@charset "utf-8";

@import url("css2.css");
@import url("css21.css");
/* <<<<<<<    Declaration   >>>>>>>>> */
:root {
  /**
  @color declaration
  */
  --clr-common-white: #fff;
  --clr-common-black: #292930;
  --clr-common-black-deep: #000;
  --clr-body-heading: #292930;
  --clr-body-text: #9399a9;
  --clr-theme-primary: #f60400;
  --clr-bg-gray: #8a90a2;
  --clr-bg-black: #212529;
}

body {
  font-family:'Microsoft Yahei', 'Helvetica Neue', Helvetica, 'Lucida Grande', Arial, 'Hiragino Sans GB', 'WenQuanYi Micro Hei', STHeiti, SimSun, sans-serif;
  font-weight: normal;
  font-style: normal;
  color: var(--clr-body-text);
  font-size: 15px;
}

.img,
img {
  max-width: 100%;
  transition: all 0.3s linear 0s;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.fix {
  overflow: hidden;
}

a,
.button,
button,
input,
textarea {
  transition: all 0.3s linear 0s;
}

a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  color: inherit;
  text-decoration: none;
}

a,
button {
  color: inherit;
  outline: medium none;
}

button:focus,
input:focus,
input:focus,
textarea,
textarea:focus {
  outline: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--clr-body-heading);
  line-height: 1.2;
}

h2,
h1 {
  font-weight: 700;
}

h3,
h4,
h5,
h6 {
  font-weight: 600;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1 {
  font-size: 56px;
}

h2 {
  font-size: 46px;
}

h3 {
  font-size: 37px;
}

h4 {
  font-size: 30px;
}

h5 {
  font-size: 25px;
}

h6 {
  font-size: 20px;
}

small {
  font-size: 13px;
}

ul {
  margin: 0px;
  padding: 0px;
}

p {
  font-family:'Microsoft Yahei', 'Helvetica Neue', Helvetica, 'Lucida Grande', Arial, 'Hiragino Sans GB', 'WenQuanYi Micro Hei', STHeiti, SimSun, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: var(--clr-body-text);
}

hr {
  border-bottom: 1px solid #9399a9;
  border-top: 0 none;
  padding: 0;
  opacity: 1;
}

label {
  color: var(--clr-common-black);
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
}

*::-moz-selection {
  background-color: var(--clr-theme-primary);
  color: var(--clr-common-white);
  text-shadow: none;
}

::-moz-selection {
  background-color: var(--clr-theme-primary);
  color: var(--clr-common-white);
  text-shadow: none;
}

::selection {
  background-color: var(--clr-theme-primary);
  color: var(--clr-common-white);
  text-shadow: none;
}

/* <<<<<<<    Input Placeholder   >>>>>>>>> */
input::-moz-placeholder {
  color: var(--clr-body-text);
  font-size: 16px;
  opacity: 1;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
input:-ms-input-placeholder {
  color: var(--clr-body-text);
  font-size: 16px;
  opacity: 1;
  -ms-transition: 0.5s;
  transition: 0.5s;
}
textarea::-moz-placeholder {
  color: var(--clr-body-text);
  font-size: 16px;
  opacity: 1;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
textarea:-ms-input-placeholder {
  color: var(--clr-body-text);
  font-size: 16px;
  opacity: 1;
  -ms-transition: 0.5s;
  transition: 0.5s;
}

input:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
  opacity: 0;
}

input:focus:-ms-input-placeholder, textarea:focus:-ms-input-placeholder {
  opacity: 0;
}

input:focus::placeholder,
textarea:focus::placeholder {
  opacity: 0;
}

/* <<<<<<<    Common Classes   >>>>>>>>> */
.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

.p-rel {
  position: relative;
}

.p-abs {
  position: absolute;
}

.p-static {
  position: static;
}

/* <<<<<<<    Overlay   >>>>>>>>> */
[data-overlay] {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
[data-overlay]::before {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: var(--clr-common-black-deep);
}

[data-overlay="3"]::before {
  opacity: 0.3;
}

[data-overlay="4"]::before {
  opacity: 0.4;
}

[data-overlay="5"]::before {
  opacity: 0.5;
}

[data-overlay="6"]::before {
  opacity: 0.6;
}

[data-overlay="7"]::before {
  opacity: 0.7;
}

[data-overlay="8"]::before {
  opacity: 0.8;
}

[data-overlay="9"]::before {
  opacity: 0.9;
}

[data-overlay] > * {
  position: relative;
  z-index: 9;
}

/* <<<<<<<    Margin & Padding     >>>>>>>>> */
.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-55 {
  margin-top: 55px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-65 {
  margin-top: 65px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-75 {
  margin-top: 75px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-85 {
  margin-top: 85px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-95 {
  margin-top: 95px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-105 {
  margin-top: 105px;
}

.mt-110 {
  margin-top: 110px;
}

.mt-115 {
  margin-top: 115px;
}

.mt-120 {
  margin-top: 120px;
}

.mt-125 {
  margin-top: 125px;
}

.mt-130 {
  margin-top: 130px;
}

.mt-135 {
  margin-top: 135px;
}

.mt-140 {
  margin-top: 140px;
}

.mt-145 {
  margin-top: 145px;
}

.mt-150 {
  margin-top: 150px;
}

.mt-155 {
  margin-top: 155px;
}

.mt-160 {
  margin-top: 160px;
}

.mt-165 {
  margin-top: 165px;
}

.mt-170 {
  margin-top: 170px;
}

.mt-175 {
  margin-top: 175px;
}

.mt-180 {
  margin-top: 180px;
}

.mt-185 {
  margin-top: 185px;
}

.mt-190 {
  margin-top: 190px;
}

.mt-195 {
  margin-top: 195px;
}

.mt-200 {
  margin-top: 200px;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-55 {
  margin-bottom: 55px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-65 {
  margin-bottom: 65px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-75 {
  margin-bottom: 75px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-85 {
  margin-bottom: 85px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-95 {
  margin-bottom: 95px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-105 {
  margin-bottom: 105px;
}

.mb-110 {
  margin-bottom: 110px;
}

.mb-115 {
  margin-bottom: 115px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb-125 {
  margin-bottom: 125px;
}

.mb-130 {
  margin-bottom: 130px;
}

.mb-135 {
  margin-bottom: 135px;
}

.mb-140 {
  margin-bottom: 140px;
}

.mb-145 {
  margin-bottom: 145px;
}

.mb-150 {
  margin-bottom: 150px;
}

.mb-155 {
  margin-bottom: 155px;
}

.mb-160 {
  margin-bottom: 160px;
}

.mb-165 {
  margin-bottom: 165px;
}

.mb-170 {
  margin-bottom: 170px;
}

.mb-175 {
  margin-bottom: 175px;
}

.mb-180 {
  margin-bottom: 180px;
}

.mb-185 {
  margin-bottom: 185px;
}

.mb-190 {
  margin-bottom: 190px;
}

.mb-195 {
  margin-bottom: 195px;
}

.mb-200 {
  margin-bottom: 200px;
}

.ml-5 {
  margin-left: 5px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-25 {
  margin-left: 25px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-35 {
  margin-left: 35px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-45 {
  margin-left: 45px;
}

.ml-50 {
  margin-left: 50px;
}

.ml-55 {
  margin-left: 55px;
}

.ml-60 {
  margin-left: 60px;
}

.ml-65 {
  margin-left: 65px;
}

.ml-70 {
  margin-left: 70px;
}

.ml-75 {
  margin-left: 75px;
}

.ml-80 {
  margin-left: 80px;
}

.ml-85 {
  margin-left: 85px;
}

.ml-90 {
  margin-left: 90px;
}

.ml-95 {
  margin-left: 95px;
}

.ml-100 {
  margin-left: 100px;
}

.ml-105 {
  margin-left: 105px;
}

.ml-110 {
  margin-left: 110px;
}

.ml-115 {
  margin-left: 115px;
}

.ml-120 {
  margin-left: 120px;
}

.ml-125 {
  margin-left: 125px;
}

.ml-130 {
  margin-left: 130px;
}

.ml-135 {
  margin-left: 135px;
}

.ml-140 {
  margin-left: 140px;
}

.ml-145 {
  margin-left: 145px;
}

.ml-150 {
  margin-left: 150px;
}

.ml-155 {
  margin-left: 155px;
}

.ml-160 {
  margin-left: 160px;
}

.ml-165 {
  margin-left: 165px;
}

.ml-170 {
  margin-left: 170px;
}

.ml-175 {
  margin-left: 175px;
}

.ml-180 {
  margin-left: 180px;
}

.ml-185 {
  margin-left: 185px;
}

.ml-190 {
  margin-left: 190px;
}

.ml-195 {
  margin-left: 195px;
}

.ml-200 {
  margin-left: 200px;
}

.mr-5 {
  margin-right: 5px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-25 {
  margin-right: 25px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-35 {
  margin-right: 35px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-45 {
  margin-right: 45px;
}

.mr-50 {
  margin-right: 50px;
}

.mr-55 {
  margin-right: 55px;
}

.mr-60 {
  margin-right: 60px;
}

.mr-65 {
  margin-right: 65px;
}

.mr-70 {
  margin-right: 70px;
}

.mr-75 {
  margin-right: 75px;
}

.mr-80 {
  margin-right: 80px;
}

.mr-85 {
  margin-right: 85px;
}

.mr-90 {
  margin-right: 90px;
}

.mr-95 {
  margin-right: 95px;
}

.mr-100 {
  margin-right: 100px;
}

.mr-105 {
  margin-right: 105px;
}

.mr-110 {
  margin-right: 110px;
}

.mr-115 {
  margin-right: 115px;
}

.mr-120 {
  margin-right: 120px;
}

.mr-125 {
  margin-right: 125px;
}

.mr-130 {
  margin-right: 130px;
}

.mr-135 {
  margin-right: 135px;
}

.mr-140 {
  margin-right: 140px;
}

.mr-145 {
  margin-right: 145px;
}

.mr-150 {
  margin-right: 150px;
}

.mr-155 {
  margin-right: 155px;
}

.mr-160 {
  margin-right: 160px;
}

.mr-165 {
  margin-right: 165px;
}

.mr-170 {
  margin-right: 170px;
}

.mr-175 {
  margin-right: 175px;
}

.mr-180 {
  margin-right: 180px;
}

.mr-185 {
  margin-right: 185px;
}

.mr-190 {
  margin-right: 190px;
}

.mr-195 {
  margin-right: 195px;
}

.mr-200 {
  margin-right: 200px;
}

.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-55 {
  padding-top: 55px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-65 {
  padding-top: 65px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-85 {
  padding-top: 85px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-95 {
  padding-top: 95px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-105 {
  padding-top: 105px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-115 {
  padding-top: 115px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-125 {
  padding-top: 125px;
}

.pt-130 {
  padding-top: 130px;
}

.pt-135 {
  padding-top: 135px;
}

.pt-140 {
  padding-top: 140px;
}

.pt-145 {
  padding-top: 145px;
}

.pt-150 {
  padding-top: 150px;
}

.pt-155 {
  padding-top: 155px;
}

.pt-160 {
  padding-top: 160px;
}

.pt-165 {
  padding-top: 165px;
}

.pt-170 {
  padding-top: 170px;
}

.pt-175 {
  padding-top: 175px;
}

.pt-180 {
  padding-top: 180px;
}

.pt-185 {
  padding-top: 185px;
}

.pt-190 {
  padding-top: 190px;
}

.pt-195 {
  padding-top: 195px;
}

.pt-200 {
  padding-top: 200px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-105 {
  padding-bottom: 105px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-115 {
  padding-bottom: 115px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pb-125 {
  padding-bottom: 125px;
}

.pb-130 {
  padding-bottom: 130px;
}

.pb-135 {
  padding-bottom: 135px;
}

.pb-140 {
  padding-bottom: 140px;
}

.pb-145 {
  padding-bottom: 145px;
}

.pb-150 {
  padding-bottom: 150px;
}

.pb-155 {
  padding-bottom: 155px;
}

.pb-160 {
  padding-bottom: 160px;
}

.pb-165 {
  padding-bottom: 165px;
}

.pb-170 {
  padding-bottom: 170px;
}

.pb-175 {
  padding-bottom: 175px;
}

.pb-180 {
  padding-bottom: 180px;
}

.pb-185 {
  padding-bottom: 185px;
}

.pb-190 {
  padding-bottom: 190px;
}

.pb-195 {
  padding-bottom: 195px;
}

.pb-200 {
  padding-bottom: 200px;
}

.pb-205 {
  padding-bottom: 205px;
}

.pb-210 {
  padding-bottom: 210px;
}

.pb-215 {
  padding-bottom: 215px;
}

.pb-220 {
  padding-bottom: 220px;
}

.pb-225 {
  padding-bottom: 225px;
}

.pb-230 {
  padding-bottom: 230px;
}

.pb-235 {
  padding-bottom: 235px;
}

.pb-240 {
  padding-bottom: 240px;
}

.pb-245 {
  padding-bottom: 245px;
}

.pb-250 {
  padding-bottom: 250px;
}

.pb-255 {
  padding-bottom: 255px;
}

.pb-260 {
  padding-bottom: 260px;
}

.pb-265 {
  padding-bottom: 265px;
}

.pb-270 {
  padding-bottom: 270px;
}

.pb-275 {
  padding-bottom: 275px;
}

.pb-280 {
  padding-bottom: 280px;
}

.pb-285 {
  padding-bottom: 285px;
}

.pb-290 {
  padding-bottom: 290px;
}

.pb-295 {
  padding-bottom: 295px;
}

.pb-300 {
  padding-bottom: 300px;
}

.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-25 {
  padding-left: 25px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-35 {
  padding-left: 35px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-45 {
  padding-left: 45px;
}

.pl-50 {
  padding-left: 50px;
}

.pl-55 {
  padding-left: 55px;
}

.pl-60 {
  padding-left: 60px;
}

.pl-65 {
  padding-left: 65px;
}

.pl-70 {
  padding-left: 70px;
}

.pl-75 {
  padding-left: 75px;
}

.pl-80 {
  padding-left: 80px;
}

.pl-85 {
  padding-left: 85px;
}

.pl-90 {
  padding-left: 90px;
}

.pl-95 {
  padding-left: 95px;
}

.pl-100 {
  padding-left: 100px;
}

.pl-105 {
  padding-left: 105px;
}

.pl-110 {
  padding-left: 110px;
}

.pl-115 {
  padding-left: 115px;
}

.pl-120 {
  padding-left: 120px;
}

.pl-125 {
  padding-left: 125px;
}

.pl-130 {
  padding-left: 130px;
}

.pl-135 {
  padding-left: 135px;
}

.pl-140 {
  padding-left: 140px;
}

.pl-145 {
  padding-left: 145px;
}

.pl-150 {
  padding-left: 150px;
}

.pl-155 {
  padding-left: 155px;
}

.pl-160 {
  padding-left: 160px;
}

.pl-165 {
  padding-left: 165px;
}

.pl-170 {
  padding-left: 170px;
}

.pl-175 {
  padding-left: 175px;
}

.pl-180 {
  padding-left: 180px;
}

.pl-185 {
  padding-left: 185px;
}

.pl-190 {
  padding-left: 190px;
}

.pl-195 {
  padding-left: 195px;
}

.pl-200 {
  padding-left: 200px;
}

.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-25 {
  padding-right: 25px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-35 {
  padding-right: 35px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-45 {
  padding-right: 45px;
}

.pr-50 {
  padding-right: 50px;
}

.pr-55 {
  padding-right: 55px;
}

.pr-60 {
  padding-right: 60px;
}

.pr-65 {
  padding-right: 65px;
}

.pr-70 {
  padding-right: 70px;
}

.pr-75 {
  padding-right: 75px;
}

.pr-80 {
  padding-right: 80px;
}

.pr-85 {
  padding-right: 85px;
}

.pr-90 {
  padding-right: 90px;
}

.pr-95 {
  padding-right: 95px;
}

.pr-100 {
  padding-right: 100px;
}

.pr-105 {
  padding-right: 105px;
}

.pr-110 {
  padding-right: 110px;
}

.pr-115 {
  padding-right: 115px;
}

.pr-120 {
  padding-right: 120px;
}

.pr-125 {
  padding-right: 125px;
}

.pr-130 {
  padding-right: 130px;
}

.pr-135 {
  padding-right: 135px;
}

.pr-140 {
  padding-right: 140px;
}

.pr-145 {
  padding-right: 145px;
}

.pr-150 {
  padding-right: 150px;
}

.pr-155 {
  padding-right: 155px;
}

.pr-160 {
  padding-right: 160px;
}

.pr-165 {
  padding-right: 165px;
}

.pr-170 {
  padding-right: 170px;
}

.pr-175 {
  padding-right: 175px;
}

.pr-180 {
  padding-right: 180px;
}

.pr-185 {
  padding-right: 185px;
}

.pr-190 {
  padding-right: 190px;
}

.pr-195 {
  padding-right: 195px;
}

.pr-200 {
  padding-right: 200px;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
    padding: 0 15px;
  }
  .container.style-2 {
    max-width: 1480px;
  }
}
.bg-default {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.bg-theme {
  background-color: var(--clr-theme-primary);
}

/**
* other generic css
*/
.ba-rating i {
  color: #ffc107;
  font-size: 15px;
  font-weight: 400;
}
.ba-rating i.active {
  font-weight: 700;
}

.white-text {
  color: var(--clr-common-white);
}
.black-text {
  color: #333333;
  font-size:18px;
  line-height:30px;
}
.black-text a {
  font-size:20px;
  line-height:30px;
  font-family:Arial;
}

.soft-white-text {
  color: #f9f9f9;
}

blockquote {
  background: #ffffff;
  text-align: center;
  padding: 30px 40px;
  font-size: 18px;
}
@media (max-width: 767px) {
  blockquote {
    padding: 30px 30px;
  }
}

.pb-12 {
  padding-bottom: 12px;
}

.ba-mb-0 {
  margin-bottom: 0;
}

.circle-animation {
  position: absolute;
  width: 500px;
  height: 500px;
  opacity: 0.4;
  -webkit-animation: spin 25s linear infinite;
          animation: spin 25s linear infinite;
}
.circle-animation.dir-top-left {
  top: -150px;
  left: -150px;
}

/*=================== 
02. Animation
******************************************************* 
*************************************************************** */
@-webkit-keyframes play-scale-up {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}
@keyframes play-scale-up {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}
@-webkit-keyframes spin {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes offer {
  0% {
    border-color: var(--clr-theme-primary);
  }
  25% {
    border-color: #b7cc12;
  }
  50% {
    border-color: #1bcc12;
  }
  75% {
    border-color: #b312cc;
  }
  100% {
    border-color: #ededed;
  }
}
@keyframes offer {
  0% {
    border-color: var(--clr-theme-primary);
  }
  25% {
    border-color: #b7cc12;
  }
  50% {
    border-color: #1bcc12;
  }
  75% {
    border-color: #b312cc;
  }
  100% {
    border-color: #ededed;
  }
}
/*=================== 
03. Button
******************************************************* 
*************************************************************** */
.ba-submit-btn {
  display: inline-block;
  border: 0;
  height: 50px;
  padding: 0 28px;
  border-radius: 4px;
  text-decoration: none;
  color: var(--clr-common-white);
  background-color: var(--clr-theme-primary);
  font-weight: 500;
  line-height: 48px;
}
.teambg{ background:#fff;}
@media only screen and (max-width:479px) {
  .ba-submit-btn {
    font-size: 14px;
    height: 40px;
    line-height: 40px;
    padding: 0 18px;
  }
}
.ba-submit-btn:hover {
  background-color: var(--clr-common-black);
  color: var(--clr-common-white);
}
.ba-submit-btn.hover-white:hover {
  background-color: var(--clr-common-white);
  color: var(--clr-theme-primary);
}
.ba-submit-btn.white-btn {
  color: var(--clr-theme-primary);
  background-color: var(--clr-common-white);
}
.ba-submit-btn.white-btn:hover {
  background-color: var(--clr-common-black);
  color: var(--clr-common-white);
}

/*=================== 
04. Header
******************************************************* 
*************************************************************** */
.ba-header-logo a {
  display: inline-block;
}
.ba-header-logo img {
  max-width: 160px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .ba-header-logo img {
  }
}
.ba-header-top-area {
  padding-top: 12px;
  padding-bottom: 50px;
}
@media (max-width: 767px) {
  .ba-header-top-content {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .ba-header-top-content .ba-header-top-list {
    padding-bottom: 5px;
  }
}
.ba-header-top-list {
  color: var(--clr-common-white);
  font-size: 14px;
  display: inline-block;
  text-decoration: none;
}
.ba-header-top-list i {
  margin-right: 5px;
}
.ba-header-top-list:hover {
  color: var(--clr-common-white);
}
.ba-header-top-right a {
  margin-left: 10px;
}
.ba-header-top-right a:first-child {
  margin-left: 0;
}
.ba-header-nav-inner {
  padding: 0 40px;
}
@media (max-width: 767px) {
  .ba-header-nav-inner {
    padding: 20px 20px;
  }
}
.ba-header-right-actions {
  display: inline-block;
}
.ba-header-nav-menu {
  display: inline-block;
}
.ba-header-nav-menu ul li {
  list-style: none;
  display: inline-block;
  position: relative;
}
.ba-header-nav-menu ul li .submenu {
  position: absolute;
  left: 0;
  top: 100%;
  text-align: left;
  background: var(--clr-common-white);
  transform-origin: top;
  min-width: 230px;
  transform: scaleY(0);
  padding: 25px 20px;
  transition: all 0.3s linear 0s;
  box-shadow: 0px 3px 25px 0px rgba(0, 0, 0, 0.1);
  z-index:10;
}
.ba-header-nav-menu ul li .submenu li {
  margin-left: 0;
  display: block;
}
.ba-header-nav-menu ul li .submenu li a {
  display: block;
  padding: 0 0;
}
.ba-header-nav-menu ul li .submenu li:not(:last-child) a {
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 15px;
}
.ba-header-nav-menu ul li:hover > .submenu {
  transform: scaleY(1);
}
.ba-header-nav-menu ul li:hover > a {
  color: #fff;
}
.ba-header-nav-menu ul li:not(:first-child) {
  margin-left: 50px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ba-header-nav-menu ul li:not(:first-child) {
    margin-left: 30px;
  }
}
.ba-header-nav-menu ul li a {
  color: #fff;
  text-decoration: none;
  padding: 30px 0;
  font-size:17px;
  font-weight:400;
  display: inline-block;
}
.ba-header-nav-menu ul li.active a {
  color: #fff;
}
.ba-header-right-link {
  width: 40px;
  background: transparent;
  height: 40px;
  display: inline-block;
  border: 1px solid #fff;
  line-height: 36px;
  border-radius: 4px;
  position: relative;
  text-align: center;
  color: #fff;
}
.ba-header-right-link:hover {
  background-color: var(--clr-theme-primary);
  color: var(--clr-common-white);
}
.ba-header-right-link i {
  font-weight: normal;
}
.ba-header-right-link .count {
  width: 25px;
  height: 25px;
  display: inline-block;
  color: var(--clr-common-white);
  background-color: var(--clr-theme-primary);
  line-height: 25px;
  font-size: 15px;
  border-radius: 50%;
  position: absolute;
  right: -13px;
  top: -13px;
}
.ba-header-nav-inner {
  background:;
  border-radius: 4px;
  position: relative;
  z-index: 9;
  margin-top: 0px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ba-header-nav-inner {
    padding: 20px 20px;
  }
}
.ba-header-right-actions .ba-header-sidebar-action {
  margin-left: 5px;
  height: 30px;
  width: 30px;
  line-height: 28px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ba-header-right-actions .ba-header-sidebar-action {
    width: 40px;
    height: 40px;
    line-height: 36px;
  }
}

.ba-search-popup .ba-color-layer {
  position: fixed;
  content: "";
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.9);
  transition: all 1500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

.ba-search-popup::after {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 560px;
  background-image: url(../image/waves-shape.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-top: 0px;
  content: "";
}

.search-active .ba-search-popup {
  transform: translateY(0%);
  margin-top: var(--margin-zero);
}

.ba-search-popup {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 99999;
  margin-top: -540px;
  transform: translateY(-110%);
  transition: all 1500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

.ba-search-popup-inner {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 9999;
  transform: translate(-50%, -50%);
}
.ba-search-popup-inner form {
  position: relative;
}
.ba-search-popup-inner form input {
  width: 700px;
  height: 70px;
  border: 0;
  border-radius: 4px;
  padding: 0 20px;
  padding-right: 90px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ba-search-popup-inner form input {
    width: 540px;
  }
}
@media (max-width: 767px) {
  .ba-search-popup-inner form input {
    width: 300px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ba-search-popup-inner form input {
    width: 460px;
  }
}
.ba-search-popup-inner form button {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 70px;
  border: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  background: var(--clr-theme-primary);
  color: #fff;
  font-size: 20px;
}

.mean-container .mean-nav ul li a.mean-expand {
  height: 24px;
}

/*--------------- INDEX-1 PAGE HEADER STYLES---------------*/
.header-banner-bg { background:#ee5021;}

.header-top {
  color: #fff;
  padding: 15px 40px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .header-top {
    padding: 15px 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .header-top {
    font-size: 14px;
    text-align: center;
  }
  .header-top .row {
    row-gap: 10px;
  }
}
.header-top-contact {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .header-top-contact {
    justify-content: center;
  }
}
.header-top-contact a {
  text-decoration: none;
}

.header-bottom {
  background: rgba(0, 0, 0, 0.4);
  padding: 0px 40px;
  border-radius: 5px;
  margin-top: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .header-bottom {
    padding: 10px 15px;
  }
}

.ba-header-nav-menu ul li .index-1-submenu a {
  color: #333;
}
.ba-header-nav-menu ul li .index-1-submenu a:hover {
  color: var(--clr-theme-primary);
}

.index-1-header-btns {
  display: inline-flex;
  -moz-column-gap: 15px;
       column-gap: 15px;
}

.btn-index-1 {
  color: var(--clr-common-white);
  border-color: var(--clr-common-white);
  margin-left: 0;
}
.btn-index-1:hover {
  background-color: var(--clr-common-white);
  color: var(--clr-theme-primary);
}
.btn-index-1:hover .index-1-cart-number-popup span {
  color: var(--clr-common-white);
}
.btn-index-1--cart {
  position: relative;
}
.btn-index-1--cart .index-1-cart-number-popup {
  display: block;
  position: absolute;
  content: "";
  top: -10px;
  right: -10px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: var(--clr-theme-primary);
  line-height: 25px;
  text-align: center;
}

.header-bottom__nav ul li a {
  color: var(--clr-common-white);
}

/*=================== 
05. Hero
******************************************************* 
*************************************************************** */
.hero-height {
  min-height: 930px;
}
@media only screen and (max-width:479px) {
  .hero-height {
    min-height: 700px;
  }
}

.hero-space-reverce {
  margin-top: -45px;
}

.has-hero-overlay {
  position: relative;
}
.has-hero-overlay > * {
  position: relative;
  z-index: 1;
}
.has-hero-overlay::after {
  position: absolute;
  left: 0;
  opacity: 0.502;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--clr-common-black-deep);
}

.ba-hero-subtitle {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 500;
  color: var(--clr-common-white);
}
.ba-hero-title {
  font-size: 50px;
  color: #12344c;
  font-weight: normal;
  line-height:70px;
  margin-bottom: 27px;
}
@media (max-width: 767px) {
  .ba-hero-title {
    font-size: 50px;
  }
}
@media only screen and (max-width:479px) {
  .ba-hero-title {
    font-size: 30px;
  }
}

.ba-form-control {
  display: inline-block;
}
@media (max-width: 767px) {
  .ba-form-control {
    display: block;
  }
}
.ba-form-control label {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--clr-common-white);
}
.ba-form-control input {
  height: 55px;
  border: 0;
  padding: 0 15px;
  border-radius: 4px;
  font-size: 14px;
  color: #808080;
}
.ba-form-control input::-webkit-input-placeholder {
  font-size: 14px;
  color: #808080;
}
.ba-form-control input:-moz-placeholder {
  font-size: 14px;
  color: #808080;
}
.ba-form-control input::-moz-placeholder {
  font-size: 14px;
  color: #808080;
}
.ba-form-control input:-ms-input-placeholder {
  font-size: 14px;
  color: #808080;
}
.ba-form-control.control-1 {
  margin-right: 11px;
}
@media (max-width: 767px) {
  .ba-form-control.control-1 {
    margin-right: 0;
    display: block;
  }
}
.ba-form-control.control-1 input {
  width: 335px;
}
@media (max-width: 767px) {
  .ba-form-control.control-1 input {
    width: 100%;
  }
}
@media only screen and (max-width:479px) {
  .ba-form-control.control-1 input {
    height: 40px;
  }
}
@media only screen and (max-width:479px) {
  .ba-form-control.control-1.pb-30 {
    padding-bottom: 20px;
  }
}
.ba-form-control.control-2 input {
  width: 150px;
}
@media (max-width: 767px) {
  .ba-form-control.control-2 input {
    width: 100%;
  }
}
@media only screen and (max-width:479px) {
  .ba-form-control.control-2 input {
    height: 40px;
  }
}

.hero-content-space-top {
  margin-top: -102px;
}

/*--------------- INDEX-1 PAGE HERO STYLES---------------*/
#banner-section {
  padding:0px;
  width:100%;
  overflow:hidden;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #banner-section {
    padding: 0px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px) {
  #banner-section {
    padding: 0px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (max-width:479px) {
  #banner-section {
    padding: 0px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .index-1-hero-title {
    font-size: 55px;
    margin-top: -9px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .index-1-hero-title {
    font-size: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .index-1-hero-title {
    font-size: 45px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .index-1-hero-title {
    font-size: 40px;
  }
}
@media only screen and (min-width: 480px) and (max-width:575px) {
  .index-1-hero-title {
    font-size: 35px;
  }
}
@media only screen and (max-width:479px) {
  .index-1-hero-title {
    font-size: 30px;
    font-weight: 500;
    margin-top: -5px;
    margin-bottom: 20px;
  }
}

.hero-txt {
  margin-bottom: 36px;
  color: #12344c;
}
@media only screen and (max-width:479px) {
  .hero-txt {
    margin-bottom: 26px;
  }
}

/*=================== 
06. feature-list
******************************************************* 
*************************************************************** */
.ba-feature-list-box .icon {
  transition: all 0.3s linear 0s;
}
.ba-feature-list-box:hover .icon {
  -webkit-animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  -webkit-transform: translate3d(0, 0, 0);
}
.ba-feature-list-play-btn.has-pos {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.ba-feature-list-vertical-item .title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .ba-feature-list-vertical-item .title span {
    overflow: hidden;
  }
}
.ba-feature-list-vertical-item .title i {
  font-size: 25px;
  color: var(--clr-body-text);
  display: inline-block;
  transition: all 0.3s linear 0s;
  margin-right: 5px;
  display: inline-block;
  transform: translateY(3px);
}
@media (max-width: 767px) {
  .ba-feature-list-vertical-item .title i {
    margin-bottom: 10px;
    float: left;
    margin-right: 15px;
    transform: translateY(6px);
  }
}
.ba-feature-list-vertical-item .title:hover i {
  color: var(--clr-theme-primary);
}
.ba-feature-list-vertical-item p {
  margin-bottom: 0;
}
.ba-feature-list-vertical-item:not(:last-child) {
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .ba-feature-list-vertical {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.ba-feature-list-play-btn {
  position: relative;
  display: inline-block;
}
.ba-feature-list-play-btn::after, .ba-feature-list-play-btn::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--clr-common-white);
  content: "";
  border-radius: 50%;
  -webkit-animation-name: play-scale-up;
          animation-name: play-scale-up;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-delay: 0;
          animation-delay: 0;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  animation-iteration-count: infinite;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
}
.ba-feature-list-play-btn:hover::after, .ba-feature-list-play-btn:hover::before {
  -webkit-animation-duration: 0s;
          animation-duration: 0s;
}
.ba-feature-list-play-btn::before {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.ba-feature-list-play-btn a {
  height: 92px;
  position: relative;
  z-index: 2;
  width: 92px;
  display: inline-block;
  background: var(--clr-theme-primary);
  color: var(--clr-common-white);
  text-align: center;
  line-height: 92px;
  border-radius: 50%;
  font-size: 36px;
}
.ba-feature-list-play-btn a i {
  margin-left: 7px;
}
.ba-feature-list-play-btn a:hover {
  background-color: var(--clr-common-black);
}
@media only screen and (max-width:479px) {
  .ba-feature-list-play-btn a {
    width: 75px;
    height: 75px;
    line-height: 75px;
    font-size: 30px;
  }
}
.ba-feature-list-vertical-left-wrap {
  position: relative;
}
.ba-feature-list-vertical-left-img-2 {
  position: absolute;
  bottom: -50px;
  right: -85px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ba-feature-list-vertical-left-img-2 {
    bottom: -50px;
    right: 20px;
  }
}
@media (max-width: 767px) {
  .ba-feature-list-vertical-left-img-2 {
    right: 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .ba-feature-list-vertical-left-img-2 img {
    width: 80px;
  }
}
.ba-feature-list-wrapper {
  padding: 55px 75px;
  background-color: var(--clr-common-white);
  border-radius: 5px;
  box-shadow: 0px 3px 25px 0px rgba(0, 0, 0, 0.1);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ba-feature-list-wrapper {
    padding: 50px 55px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ba-feature-list-wrapper {
    padding: 45px 45px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ba-feature-list-wrapper {
    padding: 50px 45px;
  }
}
@media (max-width: 767px) {
  .ba-feature-list-wrapper {
    padding: 35px 35px;
  }
}
.ba-feature-list-box .icon {
  width: 60px;
  display: inline-block;
  height: 60px;
  transition: all 0.3s linear 0s;
  display: inline-block;
  vertical-align: top;
  background: var(--clr-bg-gray);
  color: var(--clr-common-white);
  border-radius: 50%;
  line-height: 60px;
  text-align: center;
  font-size: 18px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ba-feature-list-box .icon {
    display: block;
  }
}
@media (max-width: 767px) {
  .ba-feature-list-box .icon {
    margin-bottom: 15px;
  }
}
.ba-feature-list-box .content {
  display: inline-block;
  padding-left: 30px;
  margin-left: 5px;
  position: relative;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ba-feature-list-box .content {
    padding-left: 15px;
    margin-left: 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ba-feature-list-box .content {
    padding-left: 0;
    padding-top: 20px;
    margin-left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ba-feature-list-box .content {
    padding-left: 11px;
    padding-top: 0;
    margin-left: 10px;
  }
}
@media (max-width: 767px) {
  .ba-feature-list-box .content {
    padding-left: 0;
    margin-left: 0;
    display: block;
  }
}
.ba-feature-list-box .content::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 213px;
  content: "";
  background-color: #ddd;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ba-feature-list-box .content::before {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ba-feature-list-box .content::before {
    display: none;
  }
}
.ba-feature-list-box .content .ba-feature-list-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 17px;
}
.ba-feature-list-box .content .ba-feature-list-title a {
  text-decoration: none;
}
.ba-feature-list-box .content .ba-feature-list-title a:hover {
  color: var(--clr-theme-primary);
}
.ba-feature-list-box .content ul li {
  list-style: none;
  margin-bottom: 12px;
  color: var(--clr-bg-gray);
}
.ba-feature-list-box .content ul li i {
  vertical-align: top;
  margin-right: 8px;
  margin-top: 4px;
}
.ba-feature-list-box .content ul li span {
  display: inline-block;
}
.ba-feature-list-box .content ul li.active i, .ba-feature-list-box .content ul li.active span {
  color: var(--clr-theme-primary);
}
.ba-feature-list-box:hover .icon {
  background-color: var(--clr-theme-primary);
  color: var(--clr-common-white);
}
.ba-feature-list-box.active .icon {
  background-color: var(--clr-theme-primary);
}
.ba-feature-list-box.active .icon i {
  color: var(--clr-common-white);
}

.feature-list-space-top {
  margin-top: -150px;
  position: relative;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .has-ba-feature-list-title br {
    display: none;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1400px) and (max-width: 1599px) {
  .ba-feature-list-vertical-content.pt-20 {
    padding-top: 0px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ba-feature-list-vertical-space {
    padding-right: 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ba-feature-list-vertical.pt-120.pb-165 {
    padding-bottom: 90px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ba-feature-list-vertical.pt-120.pb-165 {
    padding-bottom: 100px;
  }
}

@media (max-width: 767px) {
  .pr-135.ba-feature-list-vertical-space {
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .ba-feature-list-vertical-list-wrapper.pr-60.pb-30 {
    padding-right: 0;
  }
}

/*=================== 
07. about
******************************************************* 
*************************************************************** */
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .about-area {
    padding-top: 60px;
    padding-bottom: 55px;
  }
}

.ba-about-right-img-box-2 {
  position: relative;
}
.ba-about-right-img-box-2::before {
  position: absolute;
  right: -20px;
  top: 20px;
  width: 100%;
  height: 100%;
  background-color:#bbb;
  content: "";
  z-index: -1;
}
@media (max-width: 767px) {
  .ba-about-right-img-box-2::before {
    right: -20px;
    top: 20px;
  }
}
.ba-about-right-count-box-2 {
  background:#6d6467;
  display: inline-block;
  text-align: center;
  padding: 20px 30px;
  padding-bottom: 20px;
  border-radius: 5px;
}
.ba-about-right-count-box-2.has-pos {
  position: absolute;
  left: -85px;
  top: 30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .ba-about-right-count-box-2.has-pos {
    left: 30px;
  }
}
@media (max-width: 767px) {
  .ba-about-right-count-box-2.has-pos {
    left: 20px;
    padding: 30px 35px;
  }
}
.ba-about-right-count-box-2 .title {
  font-size: 18px;
  line-height: 36px;
  margin-bottom: 0;
  color: var(--clr-common-white);
}
@media (max-width: 767px) {
  .ba-about-right-count-box-2 .title {
    line-height: 1.2;
  }
}
.ba-about-right-count-box-2 .title .count {
  color: var(--clr-common-white);
  font-size: 45px;
  font-weight: 600;
  display: block;
  margin-bottom: 9px;
}
@media (max-width: 767px) {
  .ba-about-right-count-box-2 .title .count {
    font-size: 40px;
    margin-bottom: 2px;
  }
}
@media (max-width: 767px) {
  .ba-about-left-wrapper {
    max-width: 320px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ba-about-left-wrapper {
    max-width: 100%;
  }
}
.ba-about-left-wrapper img {
  border-radius: 6px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ba-about-left-wrapper img {
    max-width: 290px;
  }
}
.ba-about-left-wrapper .item-2 {
  margin-top: -340px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ba-about-left-wrapper .item-2 {
    margin-top: -300px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ba-about-left-wrapper .item-2 {
    margin-top: -248px;
  }
}
@media (max-width: 767px) {
  .ba-about-left-wrapper .item-2 {
    margin-top: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ba-about-left-wrapper .item-2 {
    margin-top: -345px;
  }
}
.ba-about-left-wrapper .item-2 img {
  filter: brightness(0.38);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ba-about-left-wrapper .item-2 img {
    max-width: 233px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .ba-about-right-wrapper.pt-30 {
    padding-top: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .ba-about-right-wrapper.pb-50 {
    padding-bottom: 0;
  }
}
.ba-about-experience-box.has-pos-tr {
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 767px) {
  .ba-about-experience-box.has-pos-tr {
    position: static;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ba-about-experience-box.has-pos-tr {
    position: absolute;
  }
}
.ba-about-experience-title {
  background: var(--clr-theme-primary);
  top: 0;
  display: inline-block;
  font-weight: 500;
  color: var(--clr-common-white);
  font-size: 28px;
  text-align: center;
  padding: 17px 40px;
  border-radius: 6px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ba-about-experience-title {
    font-size: 18px;
    padding: 10px 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ba-about-experience-title {
    padding: 17px 53px;
  }
}
.ba-about-experience-title span {
  display: block;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ba-about-experience-title span {
    font-size: 35px;
    margin-bottom: 5px;
  }
}
.ba-about-right-content {
  margin-bottom: 36px;
}
.ba-about-right-content .text a {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  vertical-align: top;
  text-decoration: none;
  color: var(--clr-theme-primary);
}
.ba-about-right-content .text p {
  color:#555;
  text-indent:2em;
}
.ba-about-right-actions .ba-submit-btn {
  vertical-align: top;
  margin-right: 20px;
}
@media (max-width: 767px) {
  .ba-about-right-actions .ba-submit-btn {
    margin-right: 15px;
    margin-bottom: 20px;
  }
}
.ba-about-right-call-num {
  display: inline-block;
}
.ba-about-right-call-num .icon {
  display: inline-block;
  vertical-align: top;
  margin-right: 10px;
  margin-top: 12px;
}
.ba-about-right-call-num .icon i {
  font-size: 33px;
  color: var(--clr-theme-primary);
}
.ba-about-right-call-num .content {
  display: inline-block;
}
.ba-about-right-call-num .content .title {
  font-size: 22px;
  color: #f60400;
  font-weight: 500;
}
.ba-about-right-call-num .content .number {
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  color: #8a90a2;
}
.ba-about-right-call-num .content .number:hover {
  color: var(--clr-theme-primary);
}
.ba-about-right-list {
  margin-bottom: 28px;
}
.ba-about-right-list .title a { text-decoration:none;}
.ba-about-right-list .title a:hover { text-decoration:underline;}
.ba-about-right-list ul li {
  list-style: none;
  overflow: hidden;
  margin-bottom: 15px;
}
.ba-about-right-list ul li:last-child {
  margin-bottom: 45px;
}
.ba-about-right-list ul li .icon {
  float: left;
  margin-right: 20px;
}
@media (max-width: 767px) {
  .ba-about-right-list ul li .icon {
    float: none;
    margin-bottom: 20px;
    margin-right: 0;
  }
}
.ba-about-right-list ul li .icon img {
  max-width: 40px;
}
.ba-about-right-list ul li .content {
  overflow: hidden;
}
.ba-about-right-list ul li .content .title {
  font-size: 24.2927px;
  margin-bottom: 5px;
}
.ba-about-right-list ul li .content p {
  margin-bottom: 0;
  color:#666;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .pr-30.ba-about-banner-space-right {
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .pr-30.ba-about-banner-space-right {
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .ba-about-right-list.pr-95 {
    padding-right: 0;
  }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .ba-about-right-wrapper.pt-30 {
    padding-top: 0;
  }
}

/*--------------- INDEX-1 PAGE ABOUT STYLES---------------*/
#about-section .row {
  row-gap: 55px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  #about-section {
    padding: 60px 0;
  }
  #about-section .row {
    row-gap: 30px;
  }
}

.about-img {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0px auto;
}
.about-img__txt {
  padding: 21px 20px 17px 20px;
  position: absolute;
  top: 30px;
  left: 30px;
  width: 190px;
  background: var(--clr-theme-primary);
  border-radius: 5px;
}
.about-img__txt p {
  color: var(--clr-common-white);
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 600;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .about-img__txt {
    width: 175px;
  }
}
@media only screen and (min-width: 480px) and (max-width:575px) {
  .about-img__txt {
    width: 165px;
  }
  .about-img__txt p {
    font-size: 16px;
  }
}
@media only screen and (max-width:479px) {
  .about-img__txt {
    padding: 10px;
    top: 20px;
    left: 20px;
    width: 135px;
  }
  .about-img__txt p {
    font-size: 14px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .about-content {
    text-align: center;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .about-content .section-title {
    margin-bottom: 13px;
  }
}
.about-content .ba-section-subtitle {
  margin-top: -5px;
  margin-bottom: 19px;
}
@media only screen and (max-width:479px) {
  .about-content .ba-section-subtitle {
    margin-bottom: 20px;
  }
}
.about-content .ba-section-title {
  margin-bottom: 22px;
}
@media only screen and (max-width:479px) {
  .about-content .ba-section-title {
    margin-bottom: 18px;
  }
}

.section-subtitle {
  font-weight: 600;
}

.section-title {
  font-size: 20px;
  font-weight: normal;
  margin-bottom: 13px;
}

.about__txt {
  margin-bottom: 31px;
  color: var(--clr-bg-gray);
}

.highlighted {
  gap: 30px;
  margin-bottom: 32px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .highlighted {
    justify-content: center;
  }
}
@media only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .highlighted {
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .highlighted .free-install-question {
    text-align: left;
  }
}
.highlighted .free-install-question h6 {
  font-size: 23px;
  color: #292930;
  font-weight: 600;
  text-transform: capitalize;
  margin-top: 4px;
}
.highlighted .free-install-question ul {
  list-style: none;
}
.highlighted .free-install-question ul li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 7px;
}
.highlighted .free-install-question ul li:last-child {
  margin-bottom: 0;
}
.highlighted .free-install-question ul li::before {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  top: 50%;
  left: 0;
  background: var(--clr-theme-primary);
  border-radius: 50%;
  translate: 0 -50%;
}
.highlighted .free-install-question ul li a {
  text-decoration: none;
  color: var(--clr-bg-gray);
}

.about-statics {
  margin-bottom: 31px;
  display: flex;
  align-items: center;
  gap: 100px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .about-statics {
    justify-content: center;
    text-align: left;
    gap: 20px;
  }
}
.about-statics .single-statics {
  display: flex;
  align-items: center;
  gap: 25px;
}
.about-statics .single-statics__number {
  margin-bottom: 0;
  font-size: 38px;
  font-weight: 600;
  color: var(--clr-theme-primary);
}
.about-statics .single-statics__label {
  font-size: 20px;
  font-weight: 600;
  color: #292930;
}
@media only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .about-statics .single-statics {
    gap: 15px;
  }
  .about-statics .single-statics img {
    max-width: 35px;
  }
  .about-statics .single-statics__number {
    font-size: 25px;
  }
  .about-statics .single-statics__label {
    font-size: 14px;
    font-weight: 500;
  }
}

/*=================== 
08. Section Title
******************************************************* 
*************************************************************** */
.ba-section-subtitle {
  font-size: 22px;
  font-weight: 500;
  color: var(--clr-theme-primary);
  margin-bottom: 15px;
}
.ba-section-title {
  font-size: 34px;
  color:#333;
  font-weight:600;
  margin-top: 15px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ba-section-title {
    font-size: 42px;
    margin-top: -6px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ba-section-title {
    font-size: 42px;
    margin-top: -6px;
  }
}
@media (max-width: 767px) {
  .ba-section-title {
    font-size: 32px;
  }
}
@media only screen and (max-width:479px) {
  .ba-section-title {
    font-size: 25px;
  }
}
@media (max-width: 767px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .ba-section-title br {
    display: none;
  }
}
.ba-section-title-2 {
  position: relative;
  padding-bottom: 16px;
}
.ba-section-title-2::after {
  position: absolute;
  bottom: 0;
  height: 2px;
  width: 90px;
  background: var(--clr-theme-primary);
  content: "";
  left: 0;
}
@media (max-width: 767px) {
  .ba-section-title-wrapper p br {
    display: none;
  }
}

/*=================== 
09. CTA
******************************************************* 
*************************************************************** */
.ba-cta-content-left .title {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 40px;
  color: var(--clr-common-white);
}
@media (max-width: 767px) {
  .ba-cta-content-left .title {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .ba-cta-content-left .title br {
    display: none;
  }
}
.ba-cta-content-right img {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ba-cta-content-right img {
    max-width: 540px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .service-area.pt-145 {
    padding-top: 110px;
  }
}

/*--------------- INDEX-1 PAGE CTA/NEWSLETTER STYLES---------------*/
#nws-section {
  background-image: url(../image/cta-2.jpg);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #nws-section {
    padding: 50px 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  #nws-section .row {
    row-gap: 35px;
  }
}

.nwsletter-content {
  -moz-column-gap: 30px;
       column-gap: 30px;
}
@media only screen and (max-width:479px) {
  .nwsletter-content {
    flex-direction: column;
    row-gap: 10px;
  }
}
@media only screen and (max-width:479px) {
  .nwsletter-icon {
    width: 50px;
  }
}
.nwsletter-txt {
  color: var(--clr-common-white);
}
@media only screen and (max-width:479px) {
  .nwsletter-txt {
    text-align: center;
  }
}
.nwsletter-txt h3 {
  color: var(--clr-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .nwsletter-txt h3 {
    font-size: 35px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px) {
  .nwsletter-txt h3 {
    font-size: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (max-width:479px) {
  .nwsletter-txt h3 {
    font-size: 25px;
  }
}
.nwsletter-form {
  position: relative;
}
.nwsletter-email {
  width: 100%;
  border: 0;
  padding: 10px 130px 10px 20px;
  border-radius: 5px;
  height: 50px;
}
.nwsletter-btn {
  border: 0;
  background: var(--clr-theme-primary);
  color: var(--clr-common-white);
  padding: 0 20px;
  height: 40px;
  border-radius: 5px;
  position: absolute;
  right: 5px;
  top: 50%;
  translate: 0% -50%;
}

/*=================== 
10. Service
******************************************************* 
*************************************************************** */
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .service-area {
    padding-top: 60px;
    padding-bottom: 10px;
  }
}

@media (max-width: 767px) {
  .ba-service-details-title {
    font-size: 34px;
  }
}
.ba-service-box.ba-service-box-has-padding {
  padding-right: 124px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ba-service-box.ba-service-box-has-padding {
    padding-right: 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ba-service-box.ba-service-box-has-padding {
    padding-right: 0;
  }
}
.ba-service-box:hover .icon {
  -webkit-animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  -webkit-transform: translate3d(0, 0, 0);
}
.ba-service-box .icon {
  transition: all 0.3s linear 0s;
  margin-bottom: 30px;
}
.ba-service-box .icon i {
  font-size: 43.5px;
  transition: all 0.3s linear 0s;
  color: var(--clr-theme-primary);
}
.ba-service-box .content p {
  margin-bottom: 25px;
  transition: all 0.3s linear 0s;
}
.ba-service-box .content .title {
  font-size: 24px;
  margin-bottom: 29px;
}
.ba-service-box .content .title a {
  text-decoration: none;
}
.ba-service-box .content .title a:hover {
  color: var(--clr-theme-primary);
}
.ba-service-box-2 {
  box-shadow: 0 2px 60px rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  position: relative;
  border-radius: 5px;
  background: url(/templates/default/images/logo-t.png) no-repeat right top;
}
.ba-service-box-2-wrapper {
  position: relative;
  z-index: 2;
}
.ba-service-box-2-bg-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.3s linear 0s;
  opacity: 0;
  visibility: hidden;
}
.ba-service-box-2-bg-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(0.57);
}
.ba-service-box-2-link {
  font-size: 17px;
  font-weight: 500;
  color: var(--clr-common-black);
}
.ba-service-box-2-link:hover {
  -webkit-text-decoration-color: var(--clr-theme-primary);
          text-decoration-color: var(--clr-theme-primary);
  text-decoration: underline;
  color: var(--clr-theme-primary);
}
.ba-service-box-2-title {
  margin-bottom: 13px;
}
.ba-service-box-2-title a {
  text-decoration: none;
  background-image: linear-gradient(to right, currentColor 0%, currentColor 100%);
  background-size: 0px 1px;
  background-repeat: no-repeat;
  background-position: 0px 95%;
  transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
}
.ba-service-box-2-title a:hover {
  background-size: 100% 1px;
  color: var(--clr-theme-primary);
}
.ba-service-box-2 .icon {
  display: block;
  margin-bottom: 28px;
}
.ba-service-box-2 .icon i {
  font-size: 42px;
  color: var(--clr-theme-primary);
}
.ba-service-box-2 .content p {
  margin-bottom: 23px;
}
.ba-service-box-2:hover .ba-service-box-2-bg-img {
  opacity: 1;
  visibility: visible;
}
.ba-service-box-2:hover .ba-service-box-2-title a {
  color: var(--clr-common-white);
}
.ba-service-box-2:hover .content p {
  color: var(--clr-common-white);
}
.ba-service-box-2:hover .icon i {
  color: var(--clr-common-white);
}
.ba-service-box-2:hover .ba-service-box-2-link {
  color: var(--clr-common-white);
}
.ba-service-box-3 {
  box-shadow: 0 2px 60px rgba(0, 0, 0, 0.1);
  padding: 40px 29px;
  border-radius: 5px;
}
.ba-service-box-3-link {
  font-size: 17px;
  font-weight: 500;
  color: var(--clr-theme-primary);
}
.ba-service-box-3-link:hover {
  color: var(--clr-theme-primary);
  text-decoration: underline;
}
.ba-service-box-3 .icon {
  margin-bottom: 20px;
}
.ba-service-box-3 .icon i {
  font-size: 40px;
  color: var(--clr-common-black);
  transition: all 0.3s linear 0s;
}
.ba-service-box-3 .content .title {
  margin-bottom: 10px;
}
.ba-service-box-3 .content .title a {
  text-decoration: none;
}
.ba-service-box-3 .content .title a:hover {
  color: var(--clr-theme-primary);
}
.ba-service-box-3:hover .icon i {
  color: var(--clr-theme-primary);
}

.read-more-btn {
  font-size: 17px;
  font-weight: 500;
  color: #292930;
  text-decoration: none;
  position: relative;
  display: inline-block;
}
.read-more-btn:hover {
  color: var(--clr-theme-primary);
}
.read-more-btn::after {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--clr-theme-primary);
  content: "";
  width: 0;
  height: 2px;
  transition: all 0.3s linear 0s;
}
.read-more-btn:hover::after {
  width: 100%;
  right: auto;
  left: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ba-service-details-left-content.pr-30 {
    padding-right: 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ba-service-details-left-content.pr-30 {
    padding-right: 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ba-has-wrapped-br br {
    display: block;
  }
}

@media (max-width: 767px) {
  .ba-feature-list-vertical.pb-150 {
    padding-bottom: 115px;
  }
}

/*=================== 
11. Internet Item
******************************************************* 
*************************************************************** */
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .choose-internet {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.ba-choose-internet-item {
  text-decoration: none;
  display: block;
  padding: 34px 20px;
  border-radius: 6px;
  border: 1px solid transparent;
  background-color: var(--clr-common-white);
}
.ba-choose-internet-item i {
  font-size: 23.5px;
  display: block;
  text-align: center;
  margin-bottom: 6px;
  transition: all 0.3s linear 0s;
}
.ba-choose-internet-item .ba-count {
  display: block;
  font-size: 40px;
  text-align: center;
  color: var(--clr-common-black);
  font-weight: 600;
}
.ba-choose-internet-item .ba-label {
  font-size: 18px;
  display: block;
  text-align: center;
}
.ba-choose-internet-item:hover {
  border-color: var(--clr-theme-primary);
}
.ba-choose-internet-item:hover i {
  color: var(--clr-theme-primary);
}
.ba-choose-internet-item.active {
  border-color: var(--clr-theme-primary);
}
.ba-choose-internet-item.active i {
  color: var(--clr-theme-primary);
}

@media (max-width: 767px) {
  .choose-internet-box-wrapper.pr-65 {
    padding-right: 0;
  }
}

/*=================== 
12. Pricing
******************************************************* 
*************************************************************** */
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .pricing-area {
    padding-bottom: 60px;
  }
}

.ba-pricing-box {
  padding: 50px 40px;
  border-radius: 6px;
}
.ba-pricing-box-tab nav .nav-tabs {
  box-shadow: 0 2px 60px rgba(0, 0, 0, 0.1);
  background: var(--clr-common-white);
  border-radius: 27.5px;
  padding: 10px;
}
.ba-pricing-box-tab nav .nav-tabs button.nav-link {
  font-weight: 500;
  height: 42px;
  margin: 0 5px;
  padding: 0 20px;
  border: 0;
  border-radius: 50px;
  background-color: transparent;
  color:#333333;
  font-size:16px;
}
.ba-pricing-box-tab nav .nav-tabs button.nav-link.active {
  background-color: var(--clr-theme-primary);
  color: var(--clr-common-white);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ba-pricing-box {
    padding: 40px 30px;
  }
}
@media (max-width: 767px) {
  .ba-pricing-box {
    padding: 40px 30px;
  }
}
.ba-pricing-box-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--clr-common-white);
  margin-bottom: 21px;
}
.ba-pricing-box-count {
  font-size: 34px;
  font-weight: 500;
  color: var(--clr-common-white);
}
.ba-pricing-box-count span {
  font-size: 20px;
}
.ba-pricing-box-list-wrap {
  border-radius: 6px;
  background-color: var(--clr-common-white);
  padding: 40px 60px;
  position: relative;
  overflow: hidden;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ba-pricing-box-list-wrap {
    padding: 40px 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ba-pricing-box-list-wrap {
    padding: 40px 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ba-pricing-box-list-wrap {
    padding: 40px 40px;
  }
}
@media (max-width: 767px) {
  .ba-pricing-box-list-wrap {
    padding: 35px 25px;
  }
}
.ba-pricing-box-list-wrap > * {
  position: relative;
  z-index: 2;
}
.ba-pricing-box-list-wrap::after {
  position: absolute;
  transition: all 0.3s linear 0s;
  right: 0;
  top: 0;
  width: 0;
  height: 100%;
  background-color: var(--clr-theme-primary);
  content: "";
}
.ba-pricing-box-list-wrap ul {
  text-align: left;
}
.ba-pricing-box-list-wrap ul li {
  list-style: none;
  transition: all 0.3s linear 0s;
}
.ba-pricing-box-list-wrap ul li:not(:last-child) {
  margin-bottom: 15px;
}
.ba-pricing-box-list-wrap ul li i {
  transition: all 0.3s linear 0s;
  margin-right: 9px;
}
.ba-pricing-box-list-wrap ul li.active i {
  color: var(--clr-theme-primary);
}
.ba-pricing-box-icons-wrap .ba-pricing-box-icon {
  display: inline-block;
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 45px;
  border-radius: 50%;
  border: 1px solid var(--clr-common-white);
  margin: 0 10px;
}
.ba-pricing-box-icons-wrap .ba-pricing-box-icon.active {
  background-color: var(--clr-theme-primary);
  border-color: transparent;
}
.ba-pricing-box-icons-wrap .ba-pricing-box-icon i {
  color: var(--clr-common-white);
  font-size: 18px;
}
.ba-pricing-box.active .ba-pricing-box-list-wrap::after {
  width: 100%;
}
.ba-pricing-box.active .ba-pricing-box-list-wrap .ba-submit-btn {
  background-color: var(--clr-common-white);
}
.ba-pricing-box.active .ba-pricing-box-list-wrap .ba-submit-btn:hover {
  color: var(--clr-theme-primary);
}
.ba-pricing-box.active .ba-pricing-box-list-wrap ul li {
  color: var(--clr-common-white);
}
.ba-pricing-box.active .ba-pricing-box-list-wrap ul li.active i {
  color: var(--clr-common-white);
}
.ba-pricing-box:hover .ba-submit-btn {
  background-color: var(--clr-common-black);
}
.ba-pricing-box:hover .ba-pricing-box-list-wrap ul li, .ba-pricing-box:hover .ba-pricing-box-list-wrap ul li i {
  color: var(--clr-common-white);
}
.ba-pricing-box:hover .ba-pricing-box-list-wrap::after {
  left: 0;
  right: auto;
  width: 100%;
}

/*--------------- INDEX-1 PAGE TV SHOW/LIVE SPORTS STYLES---------------*/
#liveTV-section {
  text-align: center;
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  #liveTV-section {
    padding: 60px 0;
  }
}
#liveTV-section .section-title {
  font-size: 40px;
  font-weight: 700;
  margin-top: -8px;
  margin-bottom: 13px;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  #liveTV-section .section-title {
    font-size: 32px;
  }
}
@media only screen and (min-width: 480px) and (max-width:575px) {
  #liveTV-section .section-title {
    font-size: 30px;
  }
}
@media only screen and (max-width:479px) {
  #liveTV-section .section-title {
    font-size: 25px;
    margin-top: -5px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .section-heading {
    margin-bottom: 41px;
  }
}

.single-stream {
  text-align: left;
  margin-bottom: 22px;
}
@media only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .single-stream {
    text-align: center;
  }
}
.single-stream__img-container {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.single-stream__img-container .stream-popup-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--clr-common-white);
  font-size: 30px;
  line-height: 30px;
}
.single-stream__img {
  margin-bottom: 26px;
}
.single-stream__title {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 14px;
}
@media only screen and (min-width: 480px) and (max-width:575px) {
  .single-stream__title {
    font-size: 22px;
  }
}
@media only screen and (max-width:479px) {
  .single-stream__title {
    font-size: 20px;
  }
}
.single-stream__btn {
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 400;
  color: var(--clr-theme-primary);
  text-decoration: none;
}

.custom-btn {
  background: var(--clr-common-white);
  border: 1px solid var(--clr-theme-primary);
  border-radius: 5px;
  text-decoration: none;
  color: var(--clr-theme-primary);
  height: 60px;
  line-height: 57px;
  padding: 0 60px;
  font-size: 20px;
  font-weight: 500;
  display: inline-block;
}
.custom-btn:hover {
  background-color: var(--clr-theme-primary);
  color: var(--clr-common-white);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .custom-btn {
    height: 40px;
    line-height: 37px;
    padding: 0 25px;
    font-size: 16px;
  }
}
@media only screen and (min-width: 480px) and (max-width:575px) {
  .custom-btn {
    height: 40px;
    line-height: 37px;
    padding: 0 20px;
    font-size: 16px;
  }
}
@media only screen and (max-width:479px) {
  .custom-btn {
    height: 35px;
    line-height: 32px;
    padding: 0px 15px;
    font-size: 14px;
  }
}

/*--------------- INDEX-1 PAGE STATS STYLES---------------*/
#stats-section {
  padding-top: 415px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  #stats-section .row {
    row-gap: 85px;
  }
}
@media only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  #stats-section {
    padding-bottom: 65px;
  }
}

.single-stat {
  text-align: center;
}
.single-stat:hover .single-stat__number {
  color: var(--clr-common-white);
}
.single-stat:hover .single-stat__number::before {
  background: var(--clr-theme-primary);
}
.single-stat__number {
  display: flex;
  justify-content: center;
  position: relative;
  color: var(--clr-theme-primary);
  z-index: 1;
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 75px;
  transition: 0.4s ease;
}
.single-stat__number::before {
  content: "";
  position: absolute;
  border-radius: 10px;
  top: -40px;
  left: 50%;
  width: 105px;
  height: 105px;
  background: #fff;
  z-index: -1;
  transform: rotate(45deg);
  translate: -50% 0;
  transition: 0.4s ease;
}
@media only screen and (max-width:479px) {
  .single-stat__number {
    margin-bottom: 65px;
  }
}
.single-stat__label {
  font-size: 26px;
  font-weight: 600;
  color: var(--clr-common-white);
  display: block;
}
@media only screen and (min-width: 480px) and (max-width:575px) {
  .single-stat__label {
    font-size: 24px;
  }
}
@media only screen and (max-width:479px) {
  .single-stat__label {
    font-size: 16px;
  }
}

/*--------------- INDEX-1 PAGE PACKAGE STYLES---------------*/
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  #package-section {
    padding: 60px 0;
  }
}
#package-section .section-title {
  color: var(--clr-common-white);
  margin-bottom: 39px;
  color: var(--clr-common-white);
  margin-top: -6px;
}

.package-section__btns {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .package-section__btns {
    margin-bottom: 30px;
  }
}
.package-section__btns .custom-btn {
  background: transparent;
  color: var(--clr-common-white);
  height: auto;
  padding: 15px 20px;
  line-height: normal;
  display: grid;
  place-items: center;
}
@media only screen and (max-width:479px) {
  .package-section__btns .custom-btn {
    padding: 10px 20px;
  }
}
.package-section__btns .custom-btn:hover {
  background-color: var(--clr-theme-primary);
  color: var(--clr-common-white);
}

.nav {
  gap: 30px;
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .nav {
    gap: 20px;
    margin-bottom: 20px;
    padding: 0 55px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .nav {
    gap: 15px;
    margin-bottom: 15px;
    padding: 0 35px;
  }
}
@media only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .nav {
    gap: 10px;
    margin-bottom: 15px;
  }
}

.nav-pills .nav-link {
  border: 2px solid #ccc;
  border-radius: 6px;
  color:#666;
  width: 180px;
  height: 120px;
}
.nav-pills .nav-link i {
  font-size:40px;
  margin-bottom:10px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .nav-pills .nav-link {
    width: 157px;
    height: 157px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .nav-pills .nav-link {
    width: 100%;
    height: auto;
  }
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  background-color: #335881;
  border-color:#335881;
  color: #FFFFFF;
}
.nav-pills .nav-link.active .package-nav-btn__title,
.nav-pills .show > .nav-link .package-nav-btn__title {
  color: #fff;
}

@media only screen and (max-width:479px) {
  .package-tabs .nav-link {
    padding: 5px 24px;
  }
}

.package-nav-btn__icon {
  margin-bottom: 9px;
}
@media only screen and (max-width:479px) {
  .package-nav-btn__icon {
    max-width: 18px;
    margin-bottom: 5px;
  }
}
.package-nav-btn__title {
  font-size: 18px;
  line-height: 100%;
  color: #666;
  display: block;
  font-weight: normal;
  transition: 0.3s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .package-nav-btn__title {
    font-size: 18px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px) {
  .package-nav-btn__title {
    font-size: 16px;
  }
}
@media only screen and (max-width:479px) {
  .package-nav-btn__title {
    font-size: 16px;
  }
}
@media only screen and (max-width:479px) {
  .package-nav-btn__subtitle {
    font-size: 14px;
    line-height: 100%;
  }
}

.package-tabs {
  padding: 0 11px;
}
@media only screen and (max-width:479px) {
  .package-tabs {
    padding: 0;
  }
}

.package-details {
  background-color: #fff;
  border-radius: 6px;
  padding: 30px 40px;
  margin-left:10px;
  text-align: left;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .package-details .row {
    row-gap: 25px;
  }
}
@media only screen and (max-width:479px) {
  .package-details {
    padding: 20px;
  }
}
.package-details__title {
  margin-bottom: 13px;
}
.package-details__title a { font-size:16px; text-decoration:none; color:333; font-weight:normal;}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .package-details__title {
    text-align: center;
  }
}
.package-details__txt {
  margin-bottom: 18px;border-bottom:1px dashed #ccc; padding-bottom:15px; color:#666666;}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .package-details__txt {
    text-align: center;
  }
}
.package-details__features-container {}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .package-details__features-container {
    justify-content: center;
  }
}

@media only screen and (min-width: 480px) and (max-width:575px) {
  .package-details__features-container {
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
}
@media only screen and (max-width:479px) {
  .package-details__features-container {
    flex-wrap: wrap;
    row-gap: 25px;
    text-align: center;
  }
}
.package-details__img {
  display: block;
  margin: auto;
}

.single-pack-feature__title {
  margin-bottom: 20px;
}
.single-pack-feature-list {
  list-style: inside none;
}
.single-pack-feature-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 8px;
  font-size:16px;
}
.single-pack-feature-list li a {
color:#f60400;
text-decoration:none;
}
.single-pack-feature-list li a:hover {
color:#333;
text-decoration: underline;
}
.single-pack-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0%;
  translate: 0 -50%;
  width: 26px;
  height: 26px;
  background: url(../image/check-package.png) no-repeat left center;
}
.single-pack-feature--colored {
  color: var(--clr-theme-primary);
}
.single-pack-feature--colored .single-pack-feature__title {
  color: var(--clr-theme-primary);
}

.special-offer {
  display: flex;
  align-items: center;
  background: #ededed;
  padding: 25px;
  border: 1px solid #ededed;
  border-radius: 8px;
  -moz-column-gap: 30px;
       column-gap: 30px;
  -webkit-animation: offer 4s linear infinite;
          animation: offer 4s linear infinite;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .special-offer {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .special-offer {
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
    row-gap: 20px;
  }
}
@media only screen and (max-width:479px) {
  .special-offer {
    padding: 10px;
  }
}
.special-offer__img {
  width: 45px;
}
.special-offer__title {
  display: block;
  font-size: 18px;
  font-weight: 500;
  color: var(--clr-common-black);
}
.special-offer__subtitle {
  display: block;
}
.special-offer__price {
  color: var(--clr-theme-primary);
  font-size: 17px;
  font-weight: 500;
}
.special-offer__price a {
text-decoration:none;
}

/*=================== 
12. Movie
******************************************************* 
*************************************************************** */
@media only screen and (max-width:479px) {
  .movie-area {
    padding-top: 50px;
    padding-bottom: 60px;
  }
}

.ba-movie-title {
  font-size: 46px;
  margin-bottom: 14px;
}
@media (max-width: 767px) {
  .ba-movie-title {
    font-size: 28px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), (max-width: 767px) {
  .ba-movie-title br {
    display: none;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ba-movie-content.pr-185 {
    padding-right: 100px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .ba-movie-content.pr-185 {
    padding-right: 0;
  }
}
.ba-movie-content p {
  margin-bottom: 32px;
}
.ba-movie-price {
  font-size: 28px;
  font-weight: 500;
  color: var(--clr-theme-primary);
}
.ba-movie-price-service-duration-wrap .ba-movie-price {
  display: inline-block;
  border-right: 2px solid #e6e6e6;
  padding-right: 13px;
  margin-right: 12px;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .ba-movie-price-service-duration-wrap .ba-movie-price {
    margin-right: 0;
    padding-right: 0;
    margin-bottom: 0;
    padding-bottom: 20px;
    display: block;
  }
}
.ba-movie-price-service-duration-wrap .ba-movie-service-duration {
  display: inline-block;
}
.ba-movie-price span {
  font-size: 18px;
  color: var(--clr-body-text);
}
.ba-movie-service-duration i {
  font-size: 32px;
  color: var(--clr-theme-primary);
  margin-right: 10px;
}
.ba-movie-service-duration span {
  font-weight: 500;
  color: var(--clr-theme-primary);
}

/*--------------- INDEX-1 PAGE MOVIE STYLES---------------*/
.movie-content__title, .movie-content__txt, .movie-content__price, .movie-content__price span, .movie-content__duration i, .movie-content__duration span {
  color: var(--clr-common-white);
}

@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .ba-movie-price-service-duration-wrap .movie-content__price {
    border: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .movie-section__content {
    text-align: center;
    padding: 0;
    margin: 0 90px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .movie-section__content {
    text-align: center;
    margin: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .movie-section__play-btn.has-pos {
    top: -20px;
    transform: translate(-50%, 0);
  }
}

/*=================== 
13. Testimonial
******************************************************* 
*************************************************************** */
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .testimonial-area {
    padding-top: 50px;
    padding-bottom: 60px;
  }
}

.ba-testimonial-2-box {
  padding: 50px 50px;
  border-radius: 10px;
  background: #f9f9f9;
  position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ba-testimonial-2-box {
    padding: 35px 35px;
  }
}
@media (max-width: 767px) {
  .ba-testimonial-2-box {
    padding: 30px 30px;
  }
}
.ba-testimonial-2-box::before {
  position: absolute;
  right: 35px;
  top: 25px;
  content: "\f10d";
  font-family: "Font awesome 5 pro";
  color: var(--clr-theme-primary);
  font-size: 45px;
}
@media (max-width: 767px) {
  .ba-testimonial-2-box::before {
    display: none;
  }
}
.ba-testimonial-2-content p {
  margin-bottom: 0;
}
.ba-testimonial-2-author-wrapper {
  display: flex;
  align-items: center;
  grid-gap: 0 20px;
}
@media (max-width: 767px) {
  .ba-testimonial-2-author-wrapper.mb-30 {
    margin-bottom: 15px;
  }
}
.ba-testimonial-2-author-wrapper .image img {
  max-width: 80px;
  max-height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.ba-testimonial-2-author-wrapper .content .title {
  margin-bottom: 0;
}
.ba-testimonial-boxed-single {
  background: #f9f9f9;
  border-radius: 4px;
  padding: 50px 34px;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ba-testimonial-boxed-single {
    padding: 40px 30px;
  }
}
.ba-testimonial-boxed-single::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  border-radius: 50%;
  background-image: url(../image/line.png);
  content: "";
}
.ba-testimonial-boxed-single .icon {
  margin-bottom: 15px;
}
.ba-testimonial-boxed-single .icon i {
  font-size: 37px;
  color: #292930;
  font-weight: 700;
}
.ba-testimonial-boxed-single .content p {
  margin-bottom: 13px;
}
.ba-testimonial-boxed-single .content .title {
  font-size: 24px;
  margin-bottom: 9px;
}
.ba-testimonial-boxed-single .content .designation {
  font-size: 20px;
  font-weight: 500;
  color: var(--clr-theme-primary);
  display: block;
  margin-bottom: 15px;
}

/*--------------- INDEX-1 PAGE TESTIMONIAL STYLES---------------*/
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  #testimonial-section {
    padding: 80px 0;
  }
}

.single-testimonial {
  padding: 20px;
  background: var(--clr-common-white);
  border-radius: 10px;
}

.swiper-slide-next .single-testimonial,
.swiper-slide-active .single-testimonial {
  box-shadow: 0px 5px 65px 0px rgba(0, 0, 0, 0.09);
}

.testimonial-slider-container {
  margin-right: -60px;
}

.testimonial-slider-container .mySwiper {
  max-width: 100%;
  padding: 55px 30px;
  margin: -55px -30px;
}

.stars {
  color: #ffa21d;
  margin-bottom: 18px;
}

.testimonial-writer {
  gap: 20px;
}
.testimonial-writer__img {
  width: 60px;
  height: 60px;
}
.testimonial-writer__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.testimonial-writer__name {
  text-transform: capitalize;
  color: var(--clr-common-black);
  margin-bottom: 0;
}
.testimonial-writer__label {
  color: var(--clr-theme-primary);
}

/*=================== 
14. Blog
******************************************************* 
*************************************************************** */
@media only screen and (max-width:479px) {
  .ba-blog-area {
    padding-top: 55px;
    padding-bottom: 60px;
  }
}

.ba-blog-box-list-item {
  border-bottom: 1px solid #ebecef;
  margin-bottom: 24px;
  padding-bottom: 5px;
}
.ba-blog-box-list-wrapper {
  box-shadow: 0px 3px 25px 0px rgba(0, 0, 0, 0.1);
  padding: 42px 40px;
  background-color: var(--clr-common-white);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ba-blog-box-list-wrapper {
    padding: 37px 35px;
  }
}
@media (max-width: 767px) {
  .ba-blog-box-list-wrapper {
    padding: 30px 25px;
  }
}
.ba-blog-box-img {
  overflow: hidden;
}
.ba-blog-box-img a {
  position: relative;
  display: block;
}
.ba-blog-box-img a::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--clr-common-black-deep);
  content: "";
  opacity: 0.141;
}
.ba-blog-box-img img {
  height: 290px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  transition: all 0.3s linear 0s;
}
.ba-blog-box-solid-white {
  box-shadow: 0px 3px 25px 0px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  overflow: hidden;
}
.ba-blog-box-solid-white:hover img {
  transform: scale(1.1);
}
.ba-blog-box-content {
  width: 100%;
  background: var(--clr-common-white);
  padding: 30px;
}
@media (max-width: 767px) {
  .ba-blog-box-content {
    padding: 25px 25px;
  }
}
.ba-blog-box-transparent-height {
  min-height: 546px;
  display: flex;
  align-items: flex-end;
  background-color: #f9f9f9;
  border-radius: 5px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ba-blog-box-transparent-height {
    min-height: 600px;
  }
}
@media (max-width: 767px) {
  .ba-blog-box-transparent-height {
    min-height: 460px;
  }
}
.ba-blog-box-transparent {
  transition: all 0.3s linear 0s;
  position: relative;
}
.ba-blog-box-transparent > * {
  position: relative;
  z-index: 9;
}
.ba-blog-box-transparent::after {
  position: absolute;
  left: 0;
  border-radius: 5px;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--clr-common-black-deep);
  opacity: 0.459;
  content: "";
}
.ba-blog-box-transparent:hover {
  box-shadow: 0px 3px 25px 0px rgba(0, 0, 0, 0.1);
}
.ba-blog-box-transparent .ba-blog-box-meta-single i, .ba-blog-box-transparent .ba-blog-box-meta-single a, .ba-blog-box-transparent .ba-blog-box-meta-single span {
  color: var(--clr-common-white);
}
.ba-blog-box-transparent .ba-blog-box-meta-single i:hover, .ba-blog-box-transparent .ba-blog-box-meta-single a:hover, .ba-blog-box-transparent .ba-blog-box-meta-single span:hover {
  color: #fff;
}
.ba-blog-box-transparent .ba-blog-box-content {
  background-color: transparent;
}
.ba-blog-box-transparent .ba-blog-box-title, .ba-blog-box-transparent .ba-blog-box-content p, .ba-blog-box-transparent .read-more-btn {
  color: var(--clr-common-white);
}
.ba-blog-box-transparent .ba-blog-box-title:hover, .ba-blog-box-transparent .ba-blog-box-content p:hover, .ba-blog-box-transparent .read-more-btn:hover {
  color: #fff;
}
.ba-blog-box-transparent .ba-blog-box-title a:hover {
  color: var(--clr-common-white);
}
.ba-blog-box-transparent .read-more-btn::after {
  background-color: var(--clr-common-white);
}
.ba-blog-box-btn {
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  color: var(--clr-theme-primary);
  position: relative;
}
.ba-blog-box-title {
  font-size: 24px;
  margin-bottom: 18px;
  height:50px;
}
.anli-b{ border-bottom:1px dashed #CCCCCC;}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ba-blog-box-title br {
    display: none;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ba-blog-box-title {
    font-size: 22px;
  }
}
.ba-blog-box-title a {
  text-decoration: none;
  background-image: linear-gradient(to right, currentColor 0%, currentColor 100%);
  background-size: 0px 1px;
  background-repeat: no-repeat;
  background-position: 0px 95%;
  transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ba-blog-box-title a br {
    display: none;
  }
}
.ba-blog-box-title a:hover {
  color: var(--clr-theme-primary);
}
.ba-blog-box-title:hover a {
  background-size: 100% 1px;
}
.ba-blog-box-meta-wrapper {
  margin-bottom: 13px;
}
.ba-blog-box-meta-single {
  display: inline-block;
  margin-right: 15px;
}
@media (max-width: 767px) {
  .ba-blog-box-meta-single {
    margin-right: 12px;
  }
}
.ba-blog-box-meta-single a {
  text-decoration: none;
  display: inline-block;
}
.ba-blog-box-meta-single a:hover {
  color: var(--clr-theme-primary);
}
.ba-blog-box-meta-single i {
  font-size: 14px;
  display: inline-block;
  margin-right: 5px;
  color: var(--clr-theme-primary);
}
.ba-blog-box-content p {
  margin-bottom: 15px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .about-area.pt-120.pb-170 {
    padding-bottom: 65px;
  }
}

.ba-blog-area .read-more-btn {
  margin-bottom: -7px;
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

/**
*********** blog box ************
*/
.ba-blog-widget-subscribe-form form {
  position: relative;
}
.ba-blog-widget-subscribe-form input {
  border: 0;
  width: 100%;
  padding-right: 30px;
  border-bottom: 1px solid #DDD;
  color: var(--clr-bg-gray);
  padding-bottom: 3px;
  transition: all 0.3s linear 0s;
}
.ba-blog-widget-subscribe-form input::-moz-placeholder {
  color: var(--clr-bg-gray);
}
.ba-blog-widget-subscribe-form input:-ms-input-placeholder {
  color: var(--clr-bg-gray);
}
.ba-blog-widget-subscribe-form input::placeholder {
  color: var(--clr-bg-gray);
}
.ba-blog-widget-subscribe-form input:focus {
  border-color: var(--clr-theme-primary);
}
.ba-blog-widget-subscribe-form button[type=submit] {
  padding: 0;
  position: absolute;
  right: 0;
  bottom: 2px;
  background: transparent;
  border: 0;
  color: var(--clr-theme-primary);
}
.ba-blog-box-archive {
  box-shadow: 0px 3px 25px 0px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  overflow: hidden;
}
.ba-blog-box-archive-meta > a span, .ba-blog-box-archive-meta > span span {
  display: inline-block;
}
.ba-blog-box-archive-meta > a i, .ba-blog-box-archive-meta > span i {
  font-size: 14px;
  color: var(--clr-theme-primary);
  margin-right: 5px;
  margin-left:10px;
}
.ba-blog-box-archive-meta { text-align:center; color:666;}
.ba-blog-box-archive-meta a {
  text-decoration: none;
  display: inline-block;
}
.ba-blog-box-archive-meta a:hover {
  color: var(--clr-theme-primary);
}
.ba-blog-box-archive-meta a.item-1 {
  margin-right: 15px;
}
.ba-blog-box-archive-title {
  font-size: 30px;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .ba-blog-box-archive-title {
    font-size: 26px;
  }
}
.ba-blog-box-archive-title a {
  text-decoration: none;
  background-image: linear-gradient(to right, currentColor 0%, currentColor 100%);
  background-size: 0px 1px;
  background-repeat: no-repeat;
  background-position: 0px 95%;
  transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
}
.ba-blog-box-archive-title a:hover {
  color: var(--clr-theme-primary);
  background-size: 100% 1px;
}
.ba-blog-box-archive .content {
  padding: 30px;
}
.ba-blog-box-archive .content p {
  margin-bottom: 30px;
}

/* =================== widget =================== */
.ba-blog-comment-input-wrap input, .ba-blog-comment-input-wrap textarea {
  height: 50px;
  width: 100%;
  background: #F4F4F4;
  border: 0;
  font-weight: 500;
  padding: 0 20px;
  border-radius: 4px;
}
.ba-blog-comment-input-wrap textarea {
  padding: 20px 20px;
  height: 220px;
}
.ba-blog-comment-list ul li {
  overflow: hidden;
}
.ba-blog-comment-list ul li:not(:last-child) {
  margin-bottom: 50px;
}
.ba-blog-comment-list ul li .ba-blog-comment-box {
  border-bottom: 1px solid #DDD;
  padding-bottom: 10px;
}
.ba-blog-comment-list ul li .image {
  float: left;
  margin-right: 30px;
}
@media (max-width: 767px) {
  .ba-blog-comment-list ul li .image {
    float: none;
    margin-bottom: 30px;
  }
}
.ba-blog-comment-list ul li .image img {
  width: 120px;
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.ba-blog-comment-list ul li .content {
  overflow: hidden;
}
.ba-blog-comment-list ul li .replay-link {
  text-decoration: none;
}
.ba-blog-comment-list ul li .replay-link:hover {
  color: var(--clr-theme-primary);
}
.ba-blog-comment-list ul li ul {
  padding-left: 70px;
  padding-top: 50px;
}
@media (max-width: 767px) {
  .ba-blog-comment-list ul li ul {
    padding-left: 0;
  }
}
.ba-blog-comment-list .title {
  margin-bottom: 5px;
}
.ba-blog-widget-title {
  font-size: 24px;
  margin-bottom: 25px;
}
.ba-blog-widget-post-wrapper .ba-blog-widget-post:last-child {
  margin-bottom: 0;
}
.ba-blog-widget-post { margin-bottom:20px;}
.ba-blog-widget-post .image {
  margin-right: 16px;
  display: inline-block;
  float: left;
  overflow: hidden;
}
.ba-blog-widget-post .image img {
  width: 190px;
  height: 130px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s linear 0s;
}
.ba-blog-widget-post .content {
  overflow: hidden;
  padding-top: 5px;
}
.ba-blog-widget-post .content .title {
  font-size: 20px;
  margin-bottom: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ba-blog-widget-post .content .title {
    font-size: 18px;
  }
}
.ba-blog-widget-post .content .title a {
  text-decoration: none;
  background-image: linear-gradient(to right, currentColor 0%, currentColor 100%);
  background-size: 0px 1px;
  background-repeat: no-repeat;
  background-position: 0px 95%;
  transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
}
.ba-blog-widget-post .content .title a:hover {
  color: var(--clr-theme-primary);
  background-size: 100% 1px;
}
.ba-blog-widget-post .content .date-meta i {
  margin-right: 6px;
  display: inline-block;
}
.ba-blog-widget-post:hover .image img {
  transform: scale(1.1);
}
.ba-blog-widget-list ul li {
  list-style: none;
  border-bottom: 1px solid #ddd;
  padding-bottom: 4px;
  position: relative;
  margin-bottom: 10px;
}
.ba-blog-widget-list ul li:last-child {
  margin-bottom: 0;
}
.ba-blog-widget-list ul li::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  transition: all 0.3s linear 0s;
  background-color: var(--clr-theme-primary);
  content: "";
}
.ba-blog-widget-list ul li:hover::after {
  width: 100%;
  right: auto;
  left: 0;
}
.ba-blog-widget-list ul li a {
  display: block;
  overflow: hidden;
  text-decoration: none;
}
.ba-blog-widget-list ul li a span.count {
  float: right;
}
.ba-blog-widget-list ul li a:hover {
  color: var(--clr-theme-primary);
}
.ba-blog-search-form form {
  position: relative;
}
.ba-blog-search-form input[type=search] {
  height: 50px;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  color: #606060;
  padding: 0 13px;
  padding-right: 70px;
}
.ba-blog-search-form input[type=search]::-moz-placeholder {
  color: #606060;
}
.ba-blog-search-form input[type=search]:-ms-input-placeholder {
  color: #606060;
}
.ba-blog-search-form input[type=search]::placeholder {
  color: #606060;
}
.ba-blog-search-form button[type=submit] {
  position: absolute;
  right: 0;
  top: 0;
  height: 50px;
  width: 60px;
  background-color: var(--clr-theme-primary);
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border: 0;
  color: var(--clr-common-white);
}

.tagcloud a {
  padding: 5px 17px;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 3px;
  text-decoration: none;
  margin-bottom: 15px;
  margin-right: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tagcloud a {
    padding: 5px 15px;
    margin-right: 5px;
  }
}
.tagcloud a:hover {
  background-color: var(--clr-theme-primary);
  border-color: transparent;
  color: var(--clr-common-white);
}
.tagcloud a.on {
  background-color: var(--clr-theme-primary);
  border-color: transparent;
  color: var(--clr-common-white);
}
.ba-blog-sidebar-widget-wrapper.pl-50 .ba-blog-widget:last-child {
  margin-bottom: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ba-blog-sidebar-widget-wrapper.pl-50 {
    padding-left: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ba-blog-sidebar-widget-wrapper.pl-50 {
    padding-left: 0;
  }
}

/*=================== 
15. Footer
******************************************************* 
*************************************************************** */
.ba-footer-overlay {
  position: relative;
}
.ba-footer-overlay::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--clr-common-black-deep);
  opacity: 0.86;
}
.ba-footer-overlay > * {
  position: relative;
  z-index: 9;
}
.ba-footer-copyright-text {
  margin-bottom: 0;
  font-size: 14px;
}
@media (max-width: 767px) {
  .ba-footer-copyright-text {
    text-align: center;
    padding-bottom: 10px;
  }
}
.ba-footer-copyright-list ul {
  text-align: right;
}
@media (max-width: 767px) {
  .ba-footer-copyright-list ul {
    text-align: center;
  }
}
.ba-footer-copyright-list ul li {
  list-style: none;
  display: inline-block;
}
.ba-footer-copyright-list ul li a {
  display: inline-block;
  margin-left: 25px;
  text-decoration: none;
  color: var(--clr-common-white);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ba-footer-copyright-list ul li a {
    flex: 0 0 30.33%;
  }
}
.ba-footer-copyright-list ul li:first-child a {
  margin-left: 0;
}
.ba-footer-social-list a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #323334;
  text-align: center;
  line-height: 40px;
  font-size: 15px;
  border-radius: 50%;
  margin-right: 10px;
}
.ba-footer-social-list a:hover {
  background-color: var(--clr-theme-primary);
  color: var(--clr-common-white);
}
.ba-footer-widget-working-hours-list ul li {
  overflow: hidden;
  list-style: none;
  margin-bottom: 7px;
  border-bottom: 1px solid #838384;
  padding-bottom: 5px;
}
.ba-footer-widget-working-hours-list ul li .label, .ba-footer-widget-working-hours-list ul li .value {
  display: inline-block;
  font-size: 18px;
  color: var(--clr-common-white);
}
.ba-footer-widget-working-hours-list ul li .label {
  float: left;
}
.ba-footer-widget-working-hours-list ul li .value {
  float: right;
}
.ba-footer-widget ul li {
  list-style: none;
  margin-bottom: 7px;
}
.ba-footer-widget ul li a {
  color: var(--clr-common-white);
  text-decoration: none;
  font-size: 17px;
}
.ba-footer-widget-title {
  font-size: 24px;
  color: var(--clr-common-white);
  margin-bottom: 35px;
}
.ba-footer-widget .call {
  display: block;
  margin-bottom: 10px;
}
.ba-footer-widget .title {
  font-weight: 400;
}

.ba-footer-widget .title a {
  text-decoration: none;
  color: var(--clr-theme-primary);
  position: relative;
}
.ba-footer-widget .title a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  transition: all 0.3s linear 0s;
  width: 0;
  height: 1px;
  background-color: var(--clr-theme-primary);
  content: "";
}
.ba-footer-widget .title a:hover::after {
  width: 100%;
  right: auto;
  left: 0;
}
.ba-footer-widget-instagram-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 10px;
}
.ba-footer-widget-instagram-wrapper ul li {
  margin-bottom: 0;
  list-style: none;
}
.ba-footer-logo img {
  max-width: 90px;
}
.ba-footer-cta-title {
  font-size: 26px;
  margin-bottom: 0;
}
.ba-footer-cta-border-bottom {
  border-bottom: 1px solid #5f6060;
}
.ba-footer-cta-border-bottom .ba-submit-btn:hover {
  background-color: var(--clr-common-white);
  color: var(--clr-theme-primary);
}
.ba-footer-content p {
  margin-bottom: 17px;
}

/*--------------- INDEX-1 PAGE FOOTER STYLES---------------*/
#footer-section {
  background: url(../image/footer-3.jpg) no-repeat center center;
  background-size: cover;
  border-top:2px dashed #eee;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  #footer-section {
    padding: 20px 0;
  }
}
@media only screen and (min-width: 480px) and (max-width:575px) {
  #footer-section {
    padding: 30px 0;
  }
}
@media only screen and (max-width:479px) {
  #footer-section {
    padding: 40px 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .footer-heading {
    text-align: center;
  }
}
.footer-heading h3 {
  color: var(--clr-common-white);
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .footer-heading h3 {
    font-size: 30px;
  }
}
@media only screen and (min-width: 480px) and (max-width:575px) {
  .footer-heading h3 {
    font-size: 25px;
  }
}
@media only screen and (max-width:479px) {
  .footer-heading h3 {
    font-size: 22px;
  }
}

.footer-one {
  border-bottom: 1px solid #3e3e3e;
  padding: 70px 0 100px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-one {
    padding: 70px 0 70px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .footer-one {
    padding: 40px 0;
  }
}
@media only screen and (min-width: 480px) and (max-width:575px) {
  .footer-one {
    padding: 30px 0;
  }
}
@media only screen and (max-width:479px) {
  .footer-one {
    padding: 20px 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-one .row {
    row-gap: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .footer-one .row {
    row-gap: 20px;
  }
}
@media only screen and (min-width: 480px) and (max-width:575px) {
  .footer-one .row {
    row-gap: 15px;
  }
}

.footer-img-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-img {
  -o-object-fit: cover;
     object-fit: cover;
  min-width: 260px;
  -o-object-position: top;
     object-position: top;
	 border:6px solid #aaa;
	 max-height:260px;
}

.footer-two {
  border-bottom: 1px solid #3e3e3e;
  padding: 60px 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px) {
  .footer-two .row {
    row-gap: 35px;
  }
}
@media only screen and (max-width:479px) {
  .footer-two .row {
    row-gap: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .footer-two {
    padding: 35px 0;
  }
}
@media only screen and (min-width: 480px) and (max-width:575px) {
  .footer-two {
    padding: 25px 0;
  }
}
@media only screen and (max-width:479px) {
  .footer-two {
    padding: 20px 0;
  }
}
.footer-two__logo {
  width: 160px;
  margin-bottom: 20px;
}
@media only screen and (max-width:479px) {
  .footer-two__logo {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .footer-two-widget {
    text-align: center;
  }
}
.footer-two-widget__title {
  font-weight: 500;
  color: #333;
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .footer-two-widget__title {
    text-align: center;
  }
}
@media only screen and (max-width:479px) {
  .footer-two-widget__title {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
.footer-two-widget ul li a {
  font-size: 16px;
  color: #333;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .footer-two-widget--last {
    padding: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px) {
  .footer-two-widget--last {
    text-align: left;
  }
}

.company-info__txt {
  line-height: 37px;
  font-family: "΢���ź�", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #333;
}
@media only screen and (max-width:479px) {
  .company-info__txt {
    line-height: 30px;
  }
}
.company-info__txt span {
  display: block;
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .company-info {
    text-align: center;
  }
}

.company__numbers a {
  text-decoration: none;
}

.footer-two-widget__working-hours ul li .label, .footer-two-widget__working-hours ul li .value {
  color: #dddddd;
  border-bottom-color: #dddddd;
}
.footer-two-widget__working-hours ul li:last-child {
  border-bottom: none;
}

.footer-three__copyright-text {
  color: #333;
  font-family: "΢���ź�";
  font-weight: 500;
}
.footer-three .payment-methods {
  display: block;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-three .payment-methods {
    margin: 0 auto;
  }
  .header-1 { padding:20px 0px;}
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .footer-three {
    padding: 25px 0;
  }
  .footer-three .row {
    row-gap: 15px;
  }
  .header-1 { padding:20px 0px;}
}
@media only screen and (min-width: 480px) and (max-width:575px) {
  .footer-three {
    padding: 20px 0;
  }
  .footer-three .row {
    row-gap: 10px;
  }
  .header-1 { padding:20px 0px;}
}
@media only screen and (max-width:479px) {
  .footer-three {
    padding: 15px 0;
  }
  .footer-three .row {
    row-gap: 15px;
  }
  .footer-three__copyright-text {
    font-size: 12px;
  }
  .header-1 { padding:20px 0px;}
}

/*=================== 
16. Sidebar
******************************************************* 
*************************************************************** */
.ba-sidebar-info-content {
  padding: 0 30px;
}
.ba-sidebar-logo-action-wrapper {
  padding: 20px 0px;
}
.ba-sidebar-logo-action-wrapper .action button {
  background: transparent;
  width: 42px;
  height: 42px;
  font-size: 17px;
  color: var(--clr-theme-primary);
  border: 1px solid var(--clr-theme-primary);
  border-radius: 50%;
}
.ba-sidebar-logo-action-wrapper .action button:hover {
  background-color: var(--clr-theme-primary);
  color: var(--clr-common-white);
}
.ba-sidebar-top nav button.nav-link {
  background: var(--clr-common-white);
  border-radius: 0;
  width: 50%;
  color: var(--clr-theme-primary);
  border: 0;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
}
.ba-sidebar-top nav button.nav-link.active {
  background-color: var(--clr-theme-primary);
  color: var(--clr-common-white);
}
.ba-sidebar-area {
  position: fixed;
  right: -330px;
  top: 0;
  z-index: 9;
  width: 320px;
  transition: all 0.3s linear 0s;
  height: 100%;
  background: var(--clr-common-white);
}
.ba-sidebar-area.active {
  right: 0;
}

.mean-container .mean-nav {
  margin-top: 0;
}
.mean-container .mean-nav > ul {
  display: block !important;
  overflow: hidden;
}
.mean-container a.meanmenu-reveal {
  display: none;
}
.mean-container .mean-bar {
  padding: 0;
}

.ba-sidebar-navigation-main {
  overflow: hidden;
}

.ba-sidebar-nav-content {
  padding: 0 30px;
}

.mean-container .mean-nav {
  float: none;
  background: var(--clr-theme-primary);
  margin-top: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mean-container .mean-nav {
    margin-top: 0;
  }
}

.mean-container a.meanmenu-reveal {
  display: none !important;
}

.mean-container .mean-nav ul li a {
  display: block;
  float: left;
  width: 90%;
  padding: 10px 5%;
  margin: 0;
  text-align: left;
  color: var(--clr-common-white);
  border-top: 1px solid rgba(255, 255, 255, 0.5019607843);
  text-decoration: none;
  text-transform: uppercase;
}
.mean-container .mean-nav ul li a:hover {
  background: rgba(255, 255, 255, 0.2392156863);
}

.overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--clr-common-black);
  opacity: 0;
  z-index: 9;
  transition: all 0.3s linear 0s;
  visibility: hidden;
}
.overlay.active {
  opacity: 0.5;
  visibility: visible;
}
.header-1 #mobile-menu {
  display: inline-block !important;
}

/*=================== 
17. Breadcrumb
******************************************************* 
*************************************************************** */
.has-breadcrumb-overlay {
  position: relative;
}
.has-breadcrumb-overlay::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--clr-common-black-deep);
  opacity: 0.5;
  content: "";
}
.has-breadcrumb-overlay > * {
  position: relative;
  z-index: 4;
}

.ba-breadcrumb-reverce-space {
  margin-top: 0;
}
.ba-breadcrumb-navs {
  background: #fff;
  padding:20px 20px 0px 30px;
  border-radius: 5px 5px 0 0;
}
.ba-breadcrumb-navs a, .ba-breadcrumb-navs span.current {
  font-size: 16px;
  font-weight: normal;
  color: #333;
  text-decoration: none;
}
.ba-breadcrumb-navs a:hover {
  color:#fff;
}
.ba-breadcrumb-navs span.current::before {
  content: "/";
  padding-right: 6px;
  color: currentColor;
}
.ba-breadcrumb-navs.ba-breadcrumb-navs-has-pos {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (max-width: 767px) {
  .ba-breadcrumb-navs.ba-breadcrumb-navs-has-pos {
    left: 0;
    right: auto;
  }
}
.ba-breadcrumb-title {
  font-size: 40px;
  color: var(--clr-common-white);
  font-weight: normal;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .ba-breadcrumb-title {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .ba-breadcrumb-inner-wrapper {
    padding-top: 95px;
    padding-bottom: 160px;
    padding-left: 0;
  }
}

/*=================== 
18. Blog Details
******************************************************* 
*************************************************************** */
.ba-blog-details-wrapper blockquote {
  background-color: #F4F4F4;
}
.ba-blog-details-social-box {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
  padding-bottom: 7px;
}
@media (max-width: 767px) {
  .ba-blog-details-social-box {
    padding: 20px 0;
  }
}
.ba-blog-details-comment-count i {
  font-size: 15px;
  color: var(--clr-theme-primary);
}
.ba-blog-details-comment-count span {
  display: inline-block;
  margin-left: 10px;
}
.ba-blog-details-social-icons a {
  margin-right: 10px;
  font-size: 20px;
  vertical-align: middle;
}
.ba-blog-details-social-icons a:hover {
  color: var(--clr-theme-primary);
}
.ba-blog-details-social-icons h6 {
  display: inline-block;
  margin-right: 15px;
}
.ba-blog-details-social-icons h6 i {
  display: inline-block;
  font-size: 20px;
}
.ba-blog-details-list-wrap ul li {
  list-style: none;
  margin-bottom: 12px;
}
.ba-blog-details-list-wrap ul li i {
  font-size: 20px;
  padding-right: 15px;
}
.ba-blog-details-list-wrap ul li span {
  font-size: 18px;
  font-weight: 500;
  color: var(--clr-body-heading);
  display: inline-block;
}
.ba-blog-details-list-wrap ul li.active i {
  color: var(--clr-theme-primary);
}
.ba-blog-details-title {
  margin-bottom: 17px;
  text-align:center;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ba-blog-details-title {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .ba-blog-details-title {
    font-size: 36px;
  }
}
.ba-blog-details-title-inner {
  margin-bottom: 8px;
}
.ba-blog-details-img {
  margin-bottom: 30px;
}
.ba-blog-details-img img {
  border-radius: 5px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ba-blog-details-list-wrap.pt-20 {
    padding-top: 0;
  }
  .ba-blog-sidebar-widget-wrapper.pl-50 {
    padding-left: 30px;
  }
}
/*=================== 
19. Like Us
******************************************************* 
*************************************************************** */
.ba-like-us-2-image-left img {
  width: 100%;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ba-like-content-space.pl-50 {
    padding-left: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ba-like-content-space.pl-50 {
    padding-left: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ba-like-us-content {
    position: relative;
    z-index: 1;
  }
}
@media (max-width: 767px) {
  .ba-like-us-content br {
    display: none;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991px) {
  .ba-like-us-title {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .ba-like-us-title {
    font-size: 32px;
  }
}
.ba-like-us-section-img-50 {
  max-width: 50%;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ba-like-us-section-img-50 {
    max-width: 100%;
    width: 100%;
  }
}
.ba-like-us-section-img-50 img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ba-like-us-section-img-50 img {
    width: 100%;
    filter: brightness(0.25);
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ba-like-list-wrapper.pr-185 {
    padding-right: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ba-like-list-wrapper.pr-185 {
    padding-right: 95px;
  }
}
@media (max-width: 767px) {
  .ba-like-list-wrapper.pr-185 {
    padding-right: 0;
  }
}
.ba-like-list-wrapper ul li {
  list-style: none;
  overflow: hidden;
  margin-bottom: 35px;
}
.ba-like-list-wrapper ul li:last-child {
  margin-bottom: 0;
}
.ba-like-list-wrapper ul li .icon {
  float: left;
}
.ba-like-list-wrapper ul li .icon i {
  font-size: 38px;
}
.ba-like-list-wrapper ul li .content {
  overflow: hidden;
}
.ba-like-list-wrapper ul li .content .title {
  margin-bottom: 13px;
}
.ba-like-list-wrapper ul li .content p {
  margin-bottom: 0;
}

.has-like-us-2-primary-shape {
  position: relative;
}
.has-like-us-2-primary-shape::before {
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--clr-theme-primary);
  height: 100%;
  width: 36.63%;
  content: "";
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .has-like-us-2-primary-shape::before {
    display: none;
  }
}
.has-like-us-2-primary-shape > * {
  position: relative;
  z-index: 2;
}

/*=================== 
20. Team
******************************************************* 
*************************************************************** */
@media only screen and (max-width:479px) {
  .team-area {
    padding-top: 55px;
    padding-bottom: 60px;
  }
}

.ba-team-card-box {
  box-shadow: 0 3px 63px rgba(0, 0, 0, 0);
  background:#f5f5f5;
}
.ba-team-card-box .image {
  overflow: hidden;
}
.ba-team-card-box .image img {
  transition: all 0.3s linear 0s;
  width: 100%;
}
.ba-team-card-box:hover .image img {
  transform: scale(1.1);
}
.ba-team-card-box .content {
  padding: 10px 15px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ba-team-card-box .content {
    padding: 25px 20px;
  }
}
.ba-team-card-box-social a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  background: #f3f3f3;
  text-align: center;
  margin: 0 5px;
}
.ba-team-card-box-social a:hover {
  background-color: var(--clr-theme-primary);
  color: var(--clr-common-white);
}
.ba-team-card-box-social.ba-has-social-left a {
  margin: 0;
}
.ba-team-card-box-social.ba-has-social-left a:not(:last-child) {
  margin-right: 10px;
}
.ba-team-card-box-title {
  margin-bottom: 8px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ba-team-card-box-title {
    font-size: 24px;
  }
}
.ba-team-card-box-title a {
  text-decoration: none;
  font-size:18px;
}
.ba-team-card-box-title a:hover {
  color: var(--clr-theme-primary);
}
.ba-team-card-box-designation {
  text-decoration: none;
  display: block;
  margin-bottom: 18px;
}

.single-member {
  text-align: center;
  box-shadow: 0px 0px 100px 0px #d9d9d9;
}
.single-member__img {
  margin-bottom: 12px;
}
.single-member__name {
  margin-bottom: 10px;
}
.single-member__role {
  margin-bottom: 15px;
  display: inline-block;
}
.single-member__socials {
  display: flex;
  justify-content: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  padding-bottom: 15px;
}
.single-member__socials a {
  width: 40px;
  height: 40px;
  background: #f3f3f3;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #000;
}

/*=================== 
21. Video
******************************************************* 
*************************************************************** */
.ba-video-icon {
  position: relative;
  display: inline-block;
}
.ba-video-icon::after, .ba-video-icon::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--clr-common-white);
  content: "";
  border-radius: 50%;
  -webkit-animation-name: play-scale-up;
          animation-name: play-scale-up;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-delay: 0;
          animation-delay: 0;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  animation-iteration-count: infinite;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
}
.ba-video-icon::before {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.ba-video-icon:hover::after, .ba-video-icon:hover::before {
  -webkit-animation-duration: 0s;
          animation-duration: 0s;
}
.ba-video-icon-link {
  width: 55px;
  height: 55px;
  background: var(--clr-common-white);
  display: inline-block;
  text-align: center;
  position: relative;
  z-index: 9;
  line-height: 55px;
  color: var(--clr-theme-primary);
  border-radius: 50%;
}
.ba-video-icon-link:hover {
  background-color: var(--clr-theme-primary);
  color: var(--clr-common-white);
}
.ba-video-content-subtitle {
  font-weight: 500;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ba-video-content-title {
    font-size: 42px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ba-video-content-title {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .ba-video-content-title {
    font-size: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ba-video-content-title {
    font-size: 32px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ba-video-content-title br {
    display: none;
  }
}
.ba-video-content .ba-video-content-subtitle {
  margin-bottom: 20px;
}

/*=================== 
22. Brand
******************************************************* 
*************************************************************** */
.ba-brand-active-wrapper {
  box-shadow: 0 0 83px rgba(0, 0, 0, 0.18);
  position: relative;
  z-index: 9;
  padding: 40px 20px;
  border-radius: 4px;
}
.ba-brand-active-wrapper.has-space-top-reverce {
  margin-top: 0px;
  background-color: var(--clr-common-white);
}

/*=================== 
22. Faq
******************************************************* 
*************************************************************** */
.ba-faq-left-content .ba-section-title {
  margin-bottom: 7px;
}
.ba-faq-question-form {
  background: #f8f8f8;
  border-radius: 8px;
  padding: 50px 75px;
}
@media (max-width: 767px) {
  .ba-faq-question-form-title {
    font-size: 25px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ba-faq-question-form {
    padding: 40px 35px;
  }
}
@media (max-width: 767px) {
  .ba-faq-question-form {
    padding: 35px 30px;
  }
}
.ba-faq-question-form-input-wrap input, .ba-faq-question-form-input-wrap textarea {
  width: 100%;
  height: 50px;
  padding: 0 15px;
  border-radius: 4px;
  border: 1px solid #ddd;
  background: #f2f2f2;
}
.ba-faq-question-form-input-wrap textarea {
  padding: 15px;
  height: 120px;
}
.ba-faq-accordion .accordion-item:not(:last-child) {
  margin-bottom: 20px;
}
.ba-faq-accordion .accordion-button {
  font-weight: 500;
  line-height: 26px;
  background: var(--clr-theme-primary);
  color: var(--clr-common-white);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border: 1px solid transparent;
}
@media (max-width: 767px) {
  .ba-faq-accordion .accordion-button {
    text-align: left;
  }
}
.ba-faq-accordion .accordion-button::after {
  background-image: none;
  content: "\f107";
  font-family: "Font awesome 5 pro";
  color: var(--clr-common-white);
}
.ba-faq-accordion .accordion-button:focus {
  box-shadow: none;
}
.ba-faq-accordion .accordion-button.collapsed {
  background-color: transparent;
  border-radius: 5px;
  border-color: #ccc;
  color: var(--clr-common-black);
}
.ba-faq-accordion .accordion-button.collapsed::after {
  color: var(--clr-common-black);
}
.ba-faq-accordion .accordion-collapse {
  border: 0;
}
.ba-faq-accordion .accordion-collapse .accordion-body {
  border: 1px solid #ddd;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  padding: 18px 22.5px;
  color:#333;
  font-size:18px;
  line-height:30px;
}
.ba-faq-accordion .accordion-collapse .accordion-body p {
  margin-bottom: 0;
  color:#333;
}

/*--------------- INDEX-1 PAGE FAQ STYLES---------------*/
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  #index-1-faq-section {
    padding: 80px 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .faq-img {
    margin: 0;
    text-align: center;
  }
}

/*=================== 
23. Widget
******************************************************* 
*************************************************************** */
.ba-service-widget {
  background-color: #F5F5F5;
  padding: 30px 20px;
  border-radius: 5px;
}
.ba-service-widget-form-search {
  position: relative;
}
.ba-service-widget-form-search input[type=search] {
  border: 0;
  width: 100%;
  height: 50px;
  border-radius: 5px;
  padding: 0 20px;
  padding-right: 75px;
}
.ba-service-widget-form-search button[type=submit] {
  position: absolute;
  right: 0;
  top: 0;
  height: 50px;
  width: 55px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border: 0;
  background: var(--clr-theme-primary);
  color: var(--clr-common-white);
}
.ba-service-widget-form-search button[type=submit]:hover {
  background-color: var(--clr-common-black);
  color: var(--clr-common-white);
}
.ba-service-widget-category-list ul li {
  list-style: none;
  overflow: hidden;
}
.ba-service-widget-category-list ul li:not(:last-child) {
  margin-bottom: 15px;
}
.ba-service-widget-category-list ul li a {
  display: block;
  font-size: 18px;
  border-radius: 5px;
  overflow: hidden;
  text-decoration: none;
  background: var(--clr-common-white);
  color: var(--clr-bg-black);
  padding: 15px 20px;
  position: relative;
}
.ba-service-widget-category-list ul li a i {
  float: right;
}
.ba-service-widget-category-list ul li a::before {
  position: absolute;
  left: 0;
  transition: all 0.3s linear 0s;
  top: 0;
  width: 3px;
  height: 100%;
  background-color: var(--clr-theme-primary);
  content: "";
}
.ba-service-widget-category-list ul li a > * {
  position: relative;
  z-index: 1;
}
.ba-service-widget-category-list ul li a:hover {
  color: var(--clr-common-white);
}
.ba-service-widget-category-list ul li a:hover::before {
  width: 100%;
}
.ba-service-widget-info-box {
  background: var(--clr-common-white);
  padding: 25px 20px;
}
.ba-service-widget-info-social-links ul li {
  list-style: none;
}
.ba-service-widget-info-social-links ul li:not(:last-child) a {
  padding-bottom: 10px;
}
.ba-service-widget-info-social-links ul li a {
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  color: var(--clr-common-black);
  display: block;
}
.ba-service-widget-info-social-links ul li a i {
  display: inline-block;
  margin-right: 10px;
}
.ba-service-widget-info-social-links ul li a:hover {
  color: var(--clr-theme-primary);
}

/*=================== 
24. Team Details
******************************************************* 
*************************************************************** */
.ba-team-details-input-wrap input[type=text], .ba-team-details-input-wrap input[type=email], .ba-team-details-input-wrap textarea {
  width: 100%;
  height: 50px;
  padding: 0 15px;
  border-radius: 4px;
  border: 1px solid #ddd;
  margin-bottom: 15px;
}
.ba-team-details-input-wrap textarea {
  height: 135px;
  padding: 11px 15px;
}
.ba-team-details-form-title {
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
  margin-bottom: 25px;
}
.ba-team-details-info-title {
  margin-bottom: 23px;
}
.ba-team-details-skill-progress-wrapper .ba-team-details-skill-progress-item:not(:last-child) {
  margin-bottom: 20px;
}
.ba-team-details-skill-progress-item {
  overflow: hidden;
}
.ba-team-details-skill-progress-item .ba-content {
  padding-bottom: 10px;
}
.ba-team-details-skill-progress-item .progress {
  height: 7px;
  border-radius: 3.5px;
}
.ba-team-details-skill-progress-item .progress .progress-bar {
  background-color: var(--clr-theme-primary);
}
.ba-team-details-skill-progress-item .label {
  font-weight: 500;
}
.ba-team-details-skill-progress-item .value {
  float: right;
}
.ba-team-details-skill-progress-title {
  margin-bottom: 25px;
}
.ba-team-details-author-img img {
  border-radius: 4px;
  width: 100%;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991px) {
  .ba-team-details-author-content.pt-10 {
    padding-top: 0;
  }
}
.ba-team-details-author-name {
  margin-bottom: 4px;
}
.ba-team-details-author-experience-list ul li {
  overflow: hidden;
  list-style: none;
  margin-bottom: 12px;
}
.ba-team-details-author-experience-list ul li a {
  text-decoration: none;
}
.ba-team-details-author-experience-list ul li a:hover {
  color: var(--clr-theme-primary);
}
.ba-team-details-author-experience-list ul li .label {
  min-width: 152px;
  float: left;
  font-weight: 500;
}
@media (max-width: 767px) {
  .ba-team-details-author-experience-list ul li .label {
    min-width: 122px;
  }
}
.ba-team-details-author-experience-list ul li .value {
  overflow: hidden;
  display: block;
}

/*=================== 
25. Contact
******************************************************* 
*************************************************************** */
.ba-contact-global-location-widget.has-pos {
  position: absolute;
  left: 0;
  top: 0;
  position: relative;
}
.ba-contact-map {
  line-height: 1;
}
.ba-contact-map-area.has-ba-contact-overlay {
  position: relative;
}
.ba-contact-map iframe {
  width: 100%;
  height: 743px;
  line-height: 1;
}
.ba-contact-left-content-list ul li {
  list-style: none;
  overflow: hidden;
}
.ba-contact-left-content-list ul li:not(:last-child) {
  margin-bottom: 30px;
}
.ba-contact-left-content-list ul li .icon {
  width: 60px;
  height: 60px;
  font-size: 24px;
  float: left;
  margin-right: 20px;
  text-align: center;
  line-height: 60px;
  background: var(--clr-common-black);
  border-radius: 50%;
  color: var(--clr-common-white);
  transition: all 0.3s linear 0s;
}
.ba-contact-left-content-list ul li .content {
  overflow: hidden;
}
.ba-contact-left-content-list ul li .content .ba-contact-left-title {
  margin-bottom: 3px;
}
.ba-contact-left-content-list ul li .content .ba-contact-left-title a {
  text-decoration: none;
}
.ba-contact-left-content-list ul li .content .ba-contact-left-title a:hover {
  color: var(--clr-theme-primary);
}
.ba-contact-left-content-list ul li .content p {
  margin-bottom: 0;
}
.ba-contact-left-content-list ul li .content a {
  text-decoration: none;
}
.ba-contact-left-content-list ul li .content a:hover {
  color: var(--clr-theme-primary);
}
.ba-contact-left-content-list ul li:hover .icon {
  color: var(--clr-common-white);
  background-color: var(--clr-theme-primary);
}

/*--------------- INDEX-1 PAGE CONTACT STYLES---------------*/
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  #contact-section {
    padding-top: 80px;
  }
}

.conatct-section-bg {
  border-radius: 5px;
  box-shadow: 3.5px 6.062px 76px 0px rgba(0, 0, 0, 0.11);
  background: var(--clr-common-white);
  margin-bottom: -235px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .conatct-section-bg {
    text-align: center;
    margin-bottom: -275px;
  }
}

.contact-form__input-fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 40px;
       column-gap: 40px;
  row-gap: 45px;
  margin-bottom: 50px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .contact-form__input-fields {
    -moz-column-gap: 20px;
         column-gap: 20px;
    row-gap: 25px;
    margin-bottom: 30px;
    font-size: 14px;
  }
}
@media only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .contact-form__input-fields {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 15px;
  }
}
.contact-form__input-fields > * {
  position: relative;
}
.contact-form__input-fields > *::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
  width: 18px;
  height: 18px;
  font-family: "Font Awesome 5 Pro";
  line-height: 16px;
}
.contact-form__input-fields > *:focus-within::after {
  color: var(--clr-theme-primary);
}

.input-field-container-name::after {
  content: "\f007";
}
.input-field-container-email::after {
  content: "\f2b6";
}
.input-field-container-number::after {
  content: "\f879";
}
.input-field-container-subject::after {
  content: "\f044";
}
.input-field-container-message {
  grid-area: 3/1/auto/3;
}
@media only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .input-field-container-message {
    grid-area: auto;
  }
}
.input-field-container-message::after {
  content: "\f4ad";
  top: 15px;
  translate: 0;
}

#contact-form__name, #contact-form__email, #contact-form__number, #contact-form__subject, #contact-form__message {
  border: none;
  border-bottom: 1px solid #ebebeb;
  padding: 12px 0;
  width: 100%;
  padding-right: 25px;
  color: var(--clr-theme-primary);
}
#contact-form__name:focus, #contact-form__email:focus, #contact-form__number:focus, #contact-form__subject:focus, #contact-form__message:focus {
  border-color: var(--clr-theme-primary);
}
#contact-form__message {
  resize: none;
}

.contact-section-form-container {
  padding: 60px 0px 60px 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .contact-section-form-container {
    padding: 60px 30px 60px 30px;
  }
}
.contact-section-form-container h2 {
  margin-bottom: 48px;
}

.conatct-img {
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50%;
  margin: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .conatct-img {
    position: static;
    translate: 0;
  }
}/*# sourceMappingURL=main.css.map */



/*����ͼ��ʽ*/
article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block;}audio,canvas,video{display:inline-block;}audio:not([controls]){display:none;height:0;}[hidden]{display:none;}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;}body{margin:0;}a:focus{outline:thin dotted;}a:active,a:hover{outline:0;}h1{font-size:2em;margin:0.67em 0;}abbr[title]{border-bottom:1px dotted;}b,strong{font-weight:bold;}dfn{font-style:italic;}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0;}mark{background:#ff0;color:#000;}code,kbd,pre,samp{font-family:monospace,serif;font-size:1em;}pre{white-space:pre-wrap;}q{quotes:"\201C" "\201D" "\2018" "\2019";}small{font-size:80%;}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline;}sup{top:-0.5em;}sub{bottom:-0.25em;}img{border:0;}svg:not(:root){overflow:hidden;}figure{margin:0;}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em;}legend{border:0;padding:0;}button,input,select,textarea{font-family:inherit;font-size:100%;margin:0;}button,input{line-height:normal;}button,select{text-transform:none;}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer;}button[disabled],html input[disabled]{cursor:default;}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0;}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box;}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none;}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0;}textarea{overflow:auto;vertical-align:top;}table{border-collapse:collapse;border-spacing:0;}


/* line 1, ../sass/inc/_loader.scss */
.loaderWrap {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 123333333;
}

/* line 10, ../sass/inc/_loader.scss */
.ball-scale-multiple {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
}
/* line 15, ../sass/inc/_loader.scss */
.ball-scale-multiple > div {
  background-color: #fff;
  border-radius: 0;
  animation-fill-mode: both;
  position: absolute;
  left: -60px;
  top: -60px;
  opacity: 0;
  margin: 0;
  width: 120px;
  height: 120px;
  animation: ball-scale-multiple 1s 0s linear infinite;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
}
/* line 28, ../sass/inc/_loader.scss */
.ball-scale-multiple > div:nth-child(1) {
  animation-delay: -1s;
}
/* line 31, ../sass/inc/_loader.scss */
.ball-scale-multiple > div:nth-child(2) {
  animation-delay: -0.8s;
}
/* line 34, ../sass/inc/_loader.scss */
.ball-scale-multiple > div:nth-child(3) {
  animation-delay: -0.6s;
}
/* line 37, ../sass/inc/_loader.scss */
.ball-scale-multiple > div:nth-child(4) {
  animation-delay: -0.4s;
}
/* line 40, ../sass/inc/_loader.scss */
.ball-scale-multiple > div:nth-child(5) {
  animation-delay: -0.2s;
}

/* line 7, ../sass/style.scss */
.a-container {
  width: 1170px;
  margin: 20px auto;
}

/* line 12, ../sass/style.scss */
.a-1_2 {
  width: 48%;
  display: inline-block;
  margin: 0 1%;
}

/* line 17, ../sass/style.scss */
.o-sliderContainer {
  position: relative;
  width: 100%;
}
/* line 27, ../sass/style.scss */
.o-sliderContainer.hasShadow {
  box-shadow: 0 39px 22px -29px rgba(0, 0, 0, 0.2);
}
/* line 31, ../sass/style.scss */
.o-sliderContainer:hover .o-slider-next {
  right: 0;
}
/* line 34, ../sass/style.scss */
.o-sliderContainer:hover .o-slider-prev {
  left: 0;
}

/* line 39, ../sass/style.scss */
.o-slider--item {
  height: auto;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  float: left;
  transition: all 0.2s cubic-bezier(0.7, 0.18, 0.53, 0.75);
  opacity: 0.6;
  transform: scale(0.95, 0.95);
  transform-origin: center center;
  z-index: 0;
}
/* line 52, ../sass/style.scss */
.o-slider--item::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  z-index: 0;
}
/* line 65, ../sass/style.scss */
.o-slider--item.isActive {
  opacity: 1;
  transform: scale(1, 1);
}
/* line 69, ../sass/style.scss */
.o-slider--item.isMoving {
  opacity: 0.6;
  transform: scale(0.95, 0.95);
  z-index: 100;
}

/* line 76, ../sass/style.scss */
.o-slider {
  width: auto;
  position: relative;
  display: none;
}
/* line 81, ../sass/style.scss */
.o-slider.isVisible {
  display: table;
  background: #000;
}
/* line 86, ../sass/style.scss */
.o-slider.isDraggable {
  cursor: move;
}

/* line 91, ../sass/style.scss */
.o-slider-textWrap {
  left: 2%;
  bottom: 45px;
  height: auto;
  position: absolute;
  text-align: left;
  padding: 0 0 20px 0;
  width: 96%;
  transition: all 0.4s;
  opacity: 1;
  overflow: visible;
  perspective: 1000px;
  z-index: 2;
}

/* line 107, ../sass/style.scss */
.isActive .o-slider-textWrap::after {
  width: 100%;
  left: 0;
}
/* line 112, ../sass/style.scss */
.isActive .o-slider-paragraph {
  opacity: 1;
  transform: perspective(0) rotateY(0) translate(0, 0);
  transform-origin: 0 0;
  transition-delay: 1s;
}
/* line 119, ../sass/style.scss */
.isActive .o-slider-title {
  opacity: 1;
  transform: perspective(0) rotateY(0) translate(0, 0);
  transform-origin: 0 0;
  transition-delay: 0.2s;
}
/* line 126, ../sass/style.scss */
.isActive .o-slider-subTitle {
  opacity: 1;
  transform: perspective(0) rotateY(0) translate(0, 0);
  transform-origin: 0 0;
  transition-delay: 0.6s;
}

/* line 155, ../sass/style.scss */
.o-slider-title {
  width: auto;
  margin: 0 0 5px 0;
  height: auto;
  color: #fff;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
  font-size: 1.4rem;
  display: inline-block;
  padding: 0;
  transition: all 0.4s;
  transform-origin: 0 0;
  transform: perspective(1000px) rotateY(120deg) translate(100px, -100px);
  opacity: 0;
  position: relative;
  z-index: 1;
}

/* line 172, ../sass/style.scss */
.o-slider-subTitle {
  width: auto;
  margin: 0 0 5px 0;
  height: auto;
  color: #fff;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
  font-size: 1.4rem;
  display: inline-block;
  padding: 0;
  transition: all 0.4s;
  transform-origin: 0 0;
  transform: perspective(1000px) rotateY(120deg) translate(100px, -100px);
  opacity: 0;
  position: relative;
  z-index: 1;
  font-size: 1.2rem;
}

/* line 190, ../sass/style.scss */
.o-slider-paragraph {
  width: auto;
  margin: 0 0 5px 0;
  height: auto;
  color: #fff;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
  font-size: 1.4rem;
  display: inline-block;
  padding: 0;
  transition: all 0.4s;
  transform-origin: 0 0;
  transform: perspective(1000px) rotateY(120deg) translate(100px, -100px);
  opacity: 0;
  position: relative;
  z-index: 1;
  font-size: 0.8rem;
  max-width: 100%;
  display: none;
}

@media screen and (min-width: 768px) {
  /* line 211, ../sass/style.scss */
  .o-slider-textWrap {
    left: 5%;
    width: 90%;
  }

  /* line 216, ../sass/style.scss */
  .o-slider-title {
    font-size: 1.8rem;
  }

  /* line 220, ../sass/style.scss */
  .o-slider-subTitle {
    font-size: 1.4rem;
  }

  /* line 224, ../sass/style.scss */
  .o-slider-paragraph {
    max-width: 60%;
    font-size: 1rem;
    display: block;
  }
}
@media screen and (min-width: 1024px) {
  /* line 232, ../sass/style.scss */
  .o-slider-pagination {
    bottom: 6%;
  }

  /* line 234, ../sass/style.scss */
  .o-slider-textWrap {
    left: 70px;
    width: 80%;
    bottom: 50px;
  }

  /* line 240, ../sass/style.scss */
  .o-slider-title {
    font-size: 2rem;
  }

  /* line 244, ../sass/style.scss */
  .o-slider-subTitle {
    font-size: 1.6rem;
  }

  /* line 248, ../sass/style.scss */
  .o-slider-paragraph {
    max-width: 40%;
    font-size: 1.2rem;
  }
}
/* line 299, ../sass/style.scss */
.a-divider {
  display: block;
  width: 100%;
  height: 1px;
  margin: 2px 0;
}

/* line 306, ../sass/style.scss */
.o-slider-controls {
  display: none;
}
/* line 309, ../sass/style.scss */
.o-slider-controls.isVisible {
  display: block;
}

/* line 314, ../sass/style.scss */
.o-slider-pagination {
  bottom: 2%;
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
  z-index: 1;
  margin: 0;
  padding: 0;
}
/* line 324, ../sass/style.scss */
.o-slider-pagination > li {
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.9), 0 0 2px 0 rgba(0, 0, 0, 0.4) inset;
  display: inline-block;
  position: relative;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 10px;
  width: 10px;
  margin-left: 6px;
  margin-right: 6px;
  transition: all 250ms;
  cursor: pointer;
  background-clip: padding-box;
  z-index: 100;
}
/* line 340, ../sass/style.scss */
.o-slider-pagination > li.isActive {
  background-color: rgba(255, 255, 255, 0.9);
  transform: scale(1.3, 1.3);
}

/* line 347, ../sass/style.scss */
.o-slider--preview {
  position: absolute;
  top: -70px;
  right: auto;
  bottom: auto;
  left: -65px;
  opacity: 0;
  width: 140px;
  height: 60px;
  background-size: cover;
  background-position: center center;
  transition: all 250ms;
  z-index: -1;
  border: 3px solid #000;
  transform: scale(0.2, 0.2);
  transform-origin: center bottom;
  display: none;
}
/* line 362, ../sass/style.scss */
.o-slider--preview::before {
  content: "";
  position: absolute;
  top: auto;
  right: auto;
  bottom: -13px;
  left: 50%;
  margin: 0 0 0 -5px;
  height: 0;
  width: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #000;
}

/* line 374, ../sass/style.scss */
.o-slider--preview.isActive,
.o-slider-pagination li:hover .o-slider--preview {
  opacity: 1;
  position: absolute;
  top: -76px;
  right: auto;
  bottom: auto;
  left: -65px;
  transform: scale(1, 1);
}

@media screen and (min-width: 768px) {
  /* line 384, ../sass/style.scss */
  .o-slider--preview {
    display: block;
  }
}
/* line 389, ../sass/style.scss */
.o-slider-arrows {
  margin: 0;
  list-style: none;
  display: block;
}

/* line 395, ../sass/style.scss */
.o-slider-next,
.o-slider-prev {
  position: absolute;
  top: 0;
  left: -100px;
  margin: -12px 0 0;
  width: auto;
  z-index: 1200122;
  padding: 0;
  margin: 0;
  height: 100%;
  list-style: none;
  cursor: pointer;
  text-align: center;
  padding: 10px 25px;
  background: rgba(0, 0, 0, 0);
  display: inline-block;
  vertical-align: middle;
  line-height: 100%;
  transition: all 0.4s;
}
/* line 416, ../sass/style.scss */
.o-slider-next i,
.o-slider-prev i {
  position: absolute;
  top: 50%;
  left: 0;
  margin: -12px 0 0;
  text-align: center;
  width: 100%;
  font-size: 1.8rem;
  color: #fff;
}

/* line 428, ../sass/style.scss */
.o-slider-next {
  left: auto;
  right: -100px;
}

/* line 433, ../sass/style.scss */
.isDisabled {
  opacity: 0.1;
  cursor: auto;
}

@media screen and (max-width: 1280px) {
  /* line 439, ../sass/style.scss */
  .a-container {
    width: 970px;
  }
}
@media screen and (max-width: 1024px) {
  /* line 445, ../sass/style.scss */
  .o-slider-arrows {
    display: none;
  }

  /* line 449, ../sass/style.scss */
  .o-sliderContainer {
    width: 100%;
    margin: 0 0 0px 0;
  }

  /* line 455, ../sass/style.scss */
  .o-slider--item {
  }
}
@media screen and (max-width: 768px) {
  /* line 461, ../sass/style.scss */
  .a-container {
    width: 90%;
    margin: 20px auto;
  }

  /* line 466, ../sass/style.scss */
  .a-1_2 {
    width: 100%;
    display: block;
    margin: 0;
  }

  /* line 472, ../sass/style.scss */
  .o-slider-arrows {
    display: none;
  }

  /* line 476, ../sass/style.scss */
  .o-sliderContainer {
    height: ;
  }

  /* line 480, ../sass/style.scss */
  .o-slider--item {
  }

  /* line 484, ../sass/style.scss */
  .o-slider-panel img {
    left: -15%;
    width: 130%;
  }
}
@media screen and (max-width: 480px) {
  /* line 491, ../sass/style.scss */
  .o-slider--item {
  }
  /* line 494, ../sass/style.scss */
  .o-slider--item img {
    width: 100%;
  }

  /* line 500, ../sass/style.scss */
  .o-sliderContainer {
  }

}
/* line 505, ../sass/style.scss */
.slider-pagination > li:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: scale(1.3, 1.3);
}
.d-inline-block img{border-radius:20px;}
.about-area-2{ margin-bottom:20px;}
.align-items-center2{ border-bottom:1px dashed #ccc; padding-bottom:20px;  align-items:center!important}
.ba-blog-details-content-wrapper p{ color:#333333; font-size:18px;}
.list-b{ border-left:2px solid #f60400; padding-left:20px;}
.ba-section-title-wrapper p{ color:#666666;}
.c666{ color:#666666;}



/*分页样式*/
.page{ padding-bottom:30px}
.page_info{text-align:center;margin-top:10px;color:#333;}
.page_info span{padding:0 2px;}
.page_list{height:30px;line-height:30px;text-align:center;letter-spacing:0;font-size:16px;margin-top:20px;}
.page_list a{display:inline-block;color:#333;border:1px solid #e8e8e8;background:#fff;text-align:center;padding:0 12px;margin:0 1px; text-decoration:none}
.page_list a:hover{color:#fff;border:1px solid #898989;background:#9C0D13;}
.page_list a.on{color:#fff;border:1px solid #ccc;background:#9C0D13;}

/*内容分页*/
.contPage{height:20px;line-height:20px;text-align:center;letter-spacing:0;font-family:"Arial Black";font-size:10px;margin-top:20px;}
.contPage a{display:inline-block;color:#898989;background:#fff;text-align:center;padding:0 7px;margin:0 1px;}
.contPage a:hover{color:#fff;background:#898989;}
.contPage a.on{color:#333;background:#E5EDF2;border:1px solid #C2D5E3;}
.bg-bai{ background:#FFFFFF; padding:20px; border-radius:10px;}
.t-center{ text-align:center;}